Skip to content

Commit 99d51d2

Browse files
committed
fix bug in __main__ exception handler
1 parent d9959b9 commit 99d51d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ddsc/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def main(args=None):
1010
client = DDSClient()
1111
try:
1212
client.run_command(args)
13-
except DDSUserException:
13+
except DDSUserException as ex:
1414
if client.show_error_stack_trace:
1515
raise
1616
else:

0 commit comments

Comments
 (0)