Skip to content

Commit

Permalink
Merge pull request #21 from mlaradji/patch-1
Browse files Browse the repository at this point in the history
Fixed SyntaxError in `admin_command.py` when running `advisor_admin server start`
  • Loading branch information
tobegit3hub committed Oct 25, 2018
2 parents e0f2353 + 07c4c1a commit af9b492
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 @@ -111,7 +111,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 af9b492

Please sign in to comment.