zephyr_mirror: Fix last hardcoding of starnine@mit.edu.

(imported from commit de2a00451428ecdc44380528e4ca88bfeacdb9ab)
This commit is contained in:
Tim Abbott 2012-09-28 18:08:15 -04:00
parent f5000c16ce
commit 13e1984bbd

View File

@ -64,8 +64,8 @@ def browser_login():
browser.open("https://app.humbughq.com/")
browser.follow_link(text_regex="\s*Log in\s*")
browser.select_form(nr=0)
browser["username"] = "starnine@mit.edu"
browser["password"] = "xxxxxxxx"
browser["username"] = os.environ["USER"] + "@mit.edu"
browser["password"] = os.environ["USER"]
global csrf_token
csrf_token = browser["csrfmiddlewaretoken"]