Fixed zone-name not having ascterics

This commit is contained in:
Ruakij 2021-08-02 14:05:28 +02:00
parent 35a4d8e3b1
commit 6046842c94

View File

@ -155,7 +155,7 @@ def adaptFileForRequire(zone, dumpFile):
with open(dumpFile, 'r') as fin:
with open(f"{dumpFile}.tmp", 'w+') as fout:
fout.write(f"D_EXTEND({zone},")
fout.write(f'D_EXTEND("{zone}",\n')
for line in fin:
if not re.match(ignoreLinesRexp, line):