I just reinstalled my DNS setup, still using Python 2.7 and everything is working fine except a subset of macros that worked perfectly before, and the problem has to do with inner quotation marks inside a string...
mapping rule
"android tag": Text('private const val TAG = ""')
Expected output
private const val TAG = ""
Actual output
private const val TAG = '"'""
Any idea what could be causing this?
Thank you