summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/app.py b/lib/app.py
index e8f44ad..363fd52 100644
--- a/lib/app.py
+++ b/lib/app.py
@@ -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)