Skip to content

Commit

Permalink
Merge pull request #24 from fabio-silva-movile/patch-1
Browse files Browse the repository at this point in the history
Update client.py
  • Loading branch information
ssbarnea committed Feb 5, 2015
2 parents 51ffbff + 81391cf commit 17fe8ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jira/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1415,7 +1415,8 @@ def search_issues(self, jql_str, startAt=0, maxResults=50, validate_query=True,
if fields is None:
fields = []

if maxResults is None or not maxResults:
# If None is passed as parameter, this fetch all issues from the query
if not maxResults:
maxResults = maxi
infinite = True

Expand Down

0 comments on commit 17fe8ec

Please sign in to comment.