Skip to content
This repository has been archived by the owner on Feb 18, 2019. It is now read-only.

Commit

Permalink
Only pull blocking-basecamp bugs from github.
Browse files Browse the repository at this point in the history
  • Loading branch information
carljm committed Jul 13, 2012
1 parent ace1c42 commit 348685b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion basecamp.sh
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh #!/bin/sh


python bughub.py -v bugzilla:cf_blocking_basecamp=+ github:mozilla-b2g:gaia:state=open github:mozilla-b2g:gaia:state=closed python bughub.py -v bugzilla:cf_blocking_basecamp=+ github:mozilla-b2g:gaia:state=open:labels=blocking-basecamp+ github:mozilla-b2g:gaia:state=closed:labels=blocking-basecamp+
2 changes: 1 addition & 1 deletion bughub.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def get_issues(self):
# <https://.../issues?page=13&state=open>; rel="last" # <https://.../issues?page=13&state=open>; rel="last"
url = dict( url = dict(
reversed([s.strip() for s in l.strip().split(";")]) reversed([s.strip() for s in l.strip().split(";")])
for l in response.headers["Link"].split(",") for l in response.headers.get("Link", ";").split(",")
).get('rel="next"', "").strip("<>") ).get('rel="next"', "").strip("<>")




Expand Down

0 comments on commit 348685b

Please sign in to comment.