Ensure full error message is output

This commit is contained in:
Micah Jerome Ellison 2021-01-02 14:52:53 -08:00
parent c121179dcb
commit 7ecdb9c9da

View file

@ -35,7 +35,7 @@ def cli(manual_args=None):
return run(args)
except JrnlError as e:
print(e, file=sys.stderr)
print(e.message, file=sys.stderr)
return 1
except KeyboardInterrupt: