diff options
author | Santo Cariotti <sancn@live.com> | 2017-07-27 11:11:21 +0200 |
---|---|---|
committer | Santo Cariotti <sancn@live.com> | 2017-07-27 11:11:21 +0200 |
commit | 46d56ebe56a99c156bdade1d92f5c1fa41269a41 (patch) | |
tree | 8eb48fa169ed362c020125da07f680881555459e /lib | |
parent | 023de75d6e4b10c058b92f6463e2cfe5fb71bb55 (diff) |
del error as e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ if __name__ == '__main__': while cmd != 'quit': try: cmd = input('>' + Colors.yellow + app.getName() + Colors.black) - except (EOFError, KeyboardInterrupt) as e: + except (EOFError, KeyboardInterrupt): break app.action(cmd) |