diff options
author | Bernhard Reiter <ockham@raz.or.at> | 2013-03-16 18:59:43 +0100 |
---|---|---|
committer | Bernhard Reiter <ockham@raz.or.at> | 2013-03-18 01:32:27 +0100 |
commit | a887c2b8faac16e4238f5ef374d12e3e2e5a86cb (patch) | |
tree | bba78f8f02a38f705948b0d4b2dd8160d9f54d9c | |
parent | fdad3d190836efe03658cc3c4977a9dbae2da4a2 (diff) |
Simplify HTTPBasicAuth arguments.
This makes sf2github compatible with older python-requests
versions, such as 0.8.2 (shipped e.g. with Ubuntu 12.04).
-rwxr-xr-x | issues.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -34,7 +34,6 @@ from base64 import b64encode from time import sleep from getpass import getpass import requests -from requests.auth import HTTPBasicAuth import json import re @@ -42,9 +41,9 @@ def __rest_call_unchecked(method, request, data=None): global github_repo, github_user, github_password url = 'https://api.github.com/repos/%s/%s' % (github_repo, request) if method == 'PATCH': - response = requests.patch(url, data=json.dumps(data), auth=HTTPBasicAuth(github_user, github_password)) + response = requests.patch(url, data=json.dumps(data), auth=(github_user, github_password)) else: - response = requests.post(url, data=json.dumps(data), auth=HTTPBasicAuth(github_user, github_password)) + response = requests.post(url, data=json.dumps(data), auth=(github_user, github_password)) # GitHub limits API calls to 60 per minute sleep(1) return response |