Skip to content

Commit

Permalink
Fixed SyntaxError
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaradji authored Oct 22, 2018
1 parent 8ec0f8b commit 07c4c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion advisor_client/advisor_client/commandline/admin_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def is_server_running():
if command_output != "":
return True

except subprocess.CalledProcessError, e:
except subprocess.CalledProcessError as e:
if e.output == "":
pass
else:
Expand Down

0 comments on commit 07c4c1a

Please sign in to comment.