Fixed set_config always writing to target.scad.

This commit is contained in:
Chris Palmer 2021-02-08 20:31:10 +00:00
parent 929d082b25
commit 832380f893

View File

@ -73,7 +73,7 @@ def set_config(target, usage = None):
lines = [""] lines = [""]
try: try:
with open(fname,"rt") as f: with open(fname,"rt") as f:
line = f.readlines() lines = f.readlines()
except: except:
pass pass