Skip to content

Commit

Permalink
Fix for issue 22
Browse files Browse the repository at this point in the history
post() got multiple values for keyword argument 'connection error
  • Loading branch information
nyc432 committed Aug 16, 2014
1 parent 789cd36 commit 39ba43f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ nosetests.xml
.mr.developer.cfg
.project
.pydevproject

# PyCharm
.idea

2 changes: 1 addition & 1 deletion firebase/firebase.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def _authenticate(self, params, headers):
headers.update(self.authentication.authenticator.HEADERS)

@http_connection(60)
def get(self, url, name, connection, params=None, headers=None):
def get(self, url, name, params=None, headers=None, connection=None):
"""
Synchronous GET request.
"""
Expand Down

0 comments on commit 39ba43f

Please sign in to comment.