Merge pull request #121 from blha303/patch-8

Add catch for git.io assigning the same ID twice, provide alternative custom url
This commit is contained in:
Luke Rogers 2013-09-02 16:19:24 -07:00
commit 2089a53c50
1 changed files with 2 additions and 0 deletions

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: