This commit is contained in:
ed 2023-10-06 17:50:35 +00:00
parent 0dc3c23b42
commit fcc3336760
8 changed files with 34 additions and 7 deletions

View file

@ -86,7 +86,10 @@ def main():
except Exception as ex:
print("\nnon-mp fallback due to {}\n".format(ex))
for f in sys.argv[1:]:
uncomment(f)
try:
uncomment(f)
except Exception as ex:
print("uncomment failed: [%s] %s" % (f, repr(ex)))
print("k")