Add catch for git.io assigning the same ID twice, provide alternative custom url

![What the hell, git.io](http://i.imgur.com/oED3qPD.png)
This commit is contained in:
Steven Smith 2013-08-29 20:48:22 +08:00
parent 3a6f18f67b
commit 4bf05b36c9

View file

@ -60,6 +60,8 @@ def ghissues(inp):
title = data["title"]
summary = truncate(data["body"])
gitiourl = gitio(data["html_url"])
if "Failed to get URL" in gitiourl:
gitiourl = gitio(data["html_url"] + " " + repo.split("/")[1] + number)
if summary == "":
return fmt1 % (number, state, user, title, gitiourl)
else: