Skip to content

Commit

Permalink
Merge pull request #186 from llandwerlin-intel/master
Browse files Browse the repository at this point in the history
git-pw: fix issue with python-requests
  • Loading branch information
dlespiau committed Apr 28, 2016
2 parents 7ebddfa + a406526 commit 66d2029
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-pw/git-pw
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ class GitPatchwork(object):
if self.cmd.link:
params['link'] = self.cmd.link_name

r = requests.get(mailbox_url, params)
r = requests.get(mailbox_url, params=params)
if r.status_code is not 200:
raise HttpError(r.status_code)

Expand Down Expand Up @@ -652,7 +652,7 @@ class GitPatchwork(object):
if self.cmd.link:
params['link'] = self.cmd.link_name

r = requests.get(mailbox_url, params)
r = requests.get(mailbox_url, params=params)
if r.status_code is not 200:
raise HttpError(r.status_code)
print r.content
Expand Down

0 comments on commit 66d2029

Please sign in to comment.