Skip to content

Commit

Permalink
Merge pull request #12 from alexallah/master
Browse files Browse the repository at this point in the history
Incorrect argument order in Resource.find function
  • Loading branch information
ssbarnea committed Jan 16, 2015
2 parents b03155c + 7100b79 commit 0d57a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jira/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def find(self, ids=None, params=None):
params = {}

url = self._url(ids)
self._load(url, params)
self._load(url, params=params)

def update(self, fields=None, async=None, jira=None, **kwargs):
"""
Expand Down

0 comments on commit 0d57a75

Please sign in to comment.