Skip to content
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.

Commit

Permalink
Fix flake
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan-M committed Nov 24, 2015
1 parent 2e6df06 commit b433420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zmon_cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def put(url, body):
def post(url, body):
data = get_config_data()
response = requests.post(data['url'] + url, data=body, auth=HTTPBasicAuth(data['user'], data['password']),
headers={'content-type': 'application/json'})
headers={'content-type': 'application/json'})
if response.status_code == 401:
clickclick.error("Authorization failed")
data['password'] = query_password(data['user'])
Expand Down

0 comments on commit b433420

Please sign in to comment.