Merge branch 'handle-not-enough-space-exception' into refactor-datamodel

This commit is contained in:
David Kilias 2020-03-14 15:19:44 +01:00
commit d3531342f3

View file

@ -52,7 +52,13 @@ def main(*_args):
else:
member_struct = json.load(open('example.json', 'r'))
app = FormApp(member_struct)
try:
app.run()
except Exception as e:
print(e)
return 0
if app.data_has_changed():
out_data = app.get_data_from_form()
outfile_name = app.get_filename()