diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-04-18 21:03:36 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-04-19 20:14:27 +0200 |
commit | 5e6de17902f73ea0ac48eeda77216a302bd0872f (patch) | |
tree | 861c4fc084360590f0ca9a4151d8964be63b5bb5 /src/leap/bitmask/cli/bitmask_cli.py | |
parent | 5c38c9d9ee99a3c8ebe9cd28108514f706fb4780 (diff) |
[refactor] use str repr of exception
Diffstat (limited to 'src/leap/bitmask/cli/bitmask_cli.py')
-rwxr-xr-x | src/leap/bitmask/cli/bitmask_cli.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/leap/bitmask/cli/bitmask_cli.py b/src/leap/bitmask/cli/bitmask_cli.py index f138e486..839b7f5c 100755 --- a/src/leap/bitmask/cli/bitmask_cli.py +++ b/src/leap/bitmask/cli/bitmask_cli.py @@ -150,7 +150,7 @@ def execute(): errb=lambda: cli.start(args)) except Exception, e: print (Fore.RED + "ERROR: " + Fore.RESET + - "%s" % e.strerror) + "%s" % str(e)) defer.returnValue('') cli.data = [] @@ -164,12 +164,10 @@ def execute(): if 'start' in sys.argv or 'restart' in sys.argv: command.default_dict_printer({'start': 'ok'}) except Exception, e: - if hasattr(e, 'strerror'): - print (Fore.RED + "ERROR: " + Fore.RESET + - "%s" % e.strerror) - else: - if not hasattr(e, 'expected'): - print traceback.format_exc() + print(Fore.RED + "ERROR: " + Fore.RESET + + "%s" % str(e)) + if not hasattr(e, 'expected'): + print(traceback.format_exc()) finally: yield reactor.stop() |