Skip to content

Commit

Permalink
bare expect fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amalfra committed May 18, 2019
1 parent c9668ad commit 4be8ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def user_input(text='', hide_input=False):
inp = input(text)
except KeyboardInterrupt:
sys.exit(0)
except:
except Exception:
inp = None
return inp

Expand Down

0 comments on commit 4be8ef4

Please sign in to comment.