update gather-easyfix script to only get Open items
This commit is contained in:
parent
f6ad086ae7
commit
3f5f58bd0a
1 changed files with 2 additions and 2 deletions
|
@ -232,8 +232,8 @@ def main():
|
|||
project.name = project.name.split('pagure.io:')[1]
|
||||
project.url = 'https://pagure.io/%s/' % (project.name)
|
||||
project.site = 'pagure.io'
|
||||
url = 'https://pagure.io/api/0/%s/issues?tags=%s' % (
|
||||
project.name, project.tag)
|
||||
url = 'https://pagure.io/api/0/%s/issues' \
|
||||
'?status=Open&tags=%s' % (project.name, project.tag)
|
||||
stream = urllib2.urlopen(url)
|
||||
output = stream.read()
|
||||
jsonobj = json.loads(output)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue