Commit ab0e7cf4 by David Ormsbee

Change AUTH_TOKENS index reference to a get so it doesn't explode the whole app…

Change AUTH_TOKENS index reference to a get so it doesn't explode the whole app if I did Puppet incorrectly.
parent 4b02b2af
......@@ -80,4 +80,4 @@ if 'COURSE_ID' in ENV_TOKENS:
ASKBOT_URL = "courses/{0}/discussions/".format(ENV_TOKENS['COURSE_ID'])
PEARSON_TEST_USER = "pearsontest"
PEARSON_TEST_PASSWORD = AUTH_TOKENS["PEARSON_TEST_PASSWORD"]
\ No newline at end of file
PEARSON_TEST_PASSWORD = AUTH_TOKENS.get("PEARSON_TEST_PASSWORD")
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment