Skip to content
Snippets Groups Projects
Commit ba3efd8a authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

normalize-usercode: try block

parent e1b87dac
No related branches found
No related tags found
No related merge requests found
...@@ -19,26 +19,30 @@ def normalize_text(ti, fname): ...@@ -19,26 +19,30 @@ def normalize_text(ti, fname):
return t return t
def normalize_file(fname, inplace): def normalize_file(fname, inplace):
with open(fname, 'rb') as f: try:
ti = f.read() with open(fname, 'rb') as f:
t = normalize_text(ti, fname) ti = f.read()
if t == ti: t = normalize_text(ti, fname)
print(f'Nothing changed in file {fname}') if t == ti:
return print(f'Nothing changed in file {fname}')
t2 = normalize_text(t, fname) return
if t2 != t: t2 = normalize_text(t, fname)
with open("out1.py", 'w') as f: if t2 != t:
f.write(t) with open("out1.py", 'w') as f:
with open("out2.py", 'w') as f: f.write(t)
f.write(t2) with open("out2.py", 'w') as f:
exit("Script changes under second normalization, see files out1.py and out2.py") f.write(t2)
exit("Script changes under second normalization, see files out1.py and out2.py")
if inplace:
with open(fname, 'w') as f: if inplace:
f.write(t) with open(fname, 'w') as f:
print(f'Normalized file {fname}') f.write(t)
else: print(f'Normalized file {fname}')
print(t) else:
print(t)
except Exception as e:
print(f'Failed for file {fname}: {e}')
if __name__ == '__main__': if __name__ == '__main__':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment