Repository: cloudstack-docs-rn Updated Branches: refs/heads/master 0e0e41327 -> f384d63b0
jira.py: fix loop issue Project: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/commit/f384d63b Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/tree/f384d63b Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/diff/f384d63b Branch: refs/heads/master Commit: f384d63b0c20c2866662e73d4efb200500861b23 Parents: 0e0e413 Author: Pierre-Luc Dion <[email protected]> Authored: Sat Sep 20 11:29:48 2014 -0400 Committer: Pierre-Luc Dion <[email protected]> Committed: Sat Sep 20 11:30:25 2014 -0400 ---------------------------------------------------------------------- utils/jira.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack-docs-rn/blob/f384d63b/utils/jira.py ---------------------------------------------------------------------- diff --git a/utils/jira.py b/utils/jira.py index e843cba..1f668df 100755 --- a/utils/jira.py +++ b/utils/jira.py @@ -55,7 +55,7 @@ n, m = divmod(count, 50) for i in range(n+1): - issueslist=get_all['issues'] + issueslist=requests.get(rlist+'&startAt='+str(i*50), auth=(arguments['USERNAME'],arguments['PASSWORD'])).json()['issues'] for issue in issueslist: '''assignee=issue['fields']['assignee']['displayName']
