Rename forge_zephyr to forge_message.

(imported from commit aa2dc6e24a9c1bd6be09bfa26241663ae143cef9)
This commit is contained in:
Tim Abbott 2012-10-02 18:06:10 -04:00
parent 3d29bc9d24
commit 9ada692a9a

View file

@ -113,7 +113,7 @@ def send_humbug(zeph):
humbug_data.append((key, val)) humbug_data.append((key, val))
try: try:
browser.open("https://app.humbughq.com/forge_zephyr/", urllib.urlencode(humbug_data)) browser.open("https://app.humbughq.com/forge_message/", urllib.urlencode(humbug_data))
except HTTPError, e: except HTTPError, e:
if e.code == 401: if e.code == 401:
# Digest auth failed; server was probably restarted; login in again # Digest auth failed; server was probably restarted; login in again
@ -127,7 +127,7 @@ def send_humbug(zeph):
break break
print "Auth failure; trying again after logging in a second time!" print "Auth failure; trying again after logging in a second time!"
browser.open("https://app.humbughq.com/forge_zephyr/", urllib.urlencode(humbug_data)) browser.open("https://app.humbughq.com/forge_message/", urllib.urlencode(humbug_data))
else: else:
raise raise