cleanup, don't raise the error if you catch it

This commit is contained in:
nasonfish 2013-01-28 00:09:59 -07:00
parent b648706bfd
commit 560f2e7516

View file

@ -13,21 +13,15 @@ def stripStrongTags(text):
@hook.regex(*snowy_re) @hook.regex(*snowy_re)
def snowy(match, nick="", reply=""): def snowy(match, nick="", reply=""):
try: try:
owner, name, id, blankSpace = match.group(1).split("/")
owner, name, id, nothing = match.group(1).split("/")
soup = http.get_soup("https://snowy-evening.com/%s/%s/%s" % (owner, name, id)) soup = http.get_soup("https://snowy-evening.com/%s/%s/%s" % (owner, name, id))
header = ''.join([unicode(tag) for tag in (soup.h2)]) header = ''.join([unicode(tag) for tag in (soup.h2)]).replace("<span>Issue Details</span>", "").replace("#%s " % id, "")
header = header.replace("<span>Issue Details</span>", "").replace("#%s " % id, "") info = ''.join([unicode(tag) for tag in soup.p])
info = soup.find_all('p', text=True)[0]
info = ''.join([unicode(tag) for tag in info])
if info.isspace(): if info.isspace():
info = "No details found" info = "No details found"
reply("Project %s by %s: Issue #%s: %s - %s" % (name, owner, id, header, text.truncate_str(info, 150))) reply("Project %s by %s: Issue #%s: %s - %s" % (name, owner, id, header, text.truncate_str(info, 150)))
stats = soup.find_all('ul', {'id':'stats'}, text=True) stats = soup.find_all('ul', {'id':'stats'}, text=True)
priority, number, type, status, age, other = soup.find_all('strong', text=True) priority, number, type, status, age, other = soup.find_all('strong', text=True)
data = { data = {
"priority" : stripStrongTags(''.join(priority)), "priority" : stripStrongTags(''.join(priority)),
"number" : stripStrongTags(''.join(number)), "number" : stripStrongTags(''.join(number)),
@ -37,5 +31,4 @@ def snowy(match, nick="", reply=""):
} }
reply("This issue has a priority of \x02{priority}\x02. It's age is \x02{age}\x02 and it is a \x02{type}\x02. It's status is \x02{status}\x02.".format(**data)) reply("This issue has a priority of \x02{priority}\x02. It's age is \x02{age}\x02 and it is a \x02{type}\x02. It's status is \x02{status}\x02.".format(**data))
except Exception: except Exception:
reply("An error occured while trying to retrieve the data.") reply("An error occured while trying to retrieve the data.")
raise