downgrade to lower min python version
This commit is contained in:
parent
c836bdee49
commit
f5bdd8c43d
6
main.py
6
main.py
@ -21,7 +21,7 @@ def main():
|
||||
# process all netlists
|
||||
for file in args.files:
|
||||
location = Path(file.name)
|
||||
print(f"parsing {file.name}")
|
||||
print("parsing {}".format(file.name))
|
||||
|
||||
content = file.read()
|
||||
|
||||
@ -62,7 +62,7 @@ def main():
|
||||
# do dryrun if it is wanted
|
||||
if args.d:
|
||||
for file in files:
|
||||
print(f"copy {file} -> {files[file]}")
|
||||
print("copy {} -> {}".format(file, files[file]))
|
||||
|
||||
exit(0)
|
||||
|
||||
@ -73,7 +73,7 @@ def main():
|
||||
dst = Path(files[file])
|
||||
|
||||
if not src.exists():
|
||||
print(f"src does not exist: {str(src)}")
|
||||
print("src does not exist: {}".format(str(src));
|
||||
continue
|
||||
|
||||
# create directory
|
||||
|
Loading…
Reference in New Issue
Block a user