Skip to content

Commit

Permalink
Merge pull request #71 from ralphbean/feature/modern-requests
Browse files Browse the repository at this point in the history
Feature/modern requests
  • Loading branch information
ralphbean committed May 23, 2013
2 parents a300aad + 0f8b369 commit 67fadc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bugwarrior/services/githubutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def _getter(url, auth):
# Older python-requests
results += response.json

link = _link_field_to_dict(response.headers['link'])
link = _link_field_to_dict(response.headers.get('link', None))

return results

Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@
install_requires=[
"twiggy",
"bitlyapi",
# We use requests ourselves, but we limit the version just so
# jira-python can use it correctly.
"requests<=0.14.2",
"requests",
"offtrac",
"python-bugzilla",
"jira-python",
Expand Down

0 comments on commit 67fadc6

Please sign in to comment.