From 20f84b2055a1b7064e1ddf1a47734094b5d7682d Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Tue, 2 Oct 2012 12:44:47 -0400 Subject: [PATCH] Use the right config as the base for lms.envs.cms.aws --- lms/envs/cms/aws.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/envs/cms/aws.py b/lms/envs/cms/aws.py index b807a0f545..a0e2f25d83 100644 --- a/lms/envs/cms/aws.py +++ b/lms/envs/cms/aws.py @@ -2,7 +2,7 @@ Settings for the LMS that runs alongside the CMS on AWS """ -from .aws import * +from ..aws import * with open(ENV_ROOT / "cms.auth.json") as auth_file: CMS_AUTH_TOKENS = json.load(auth_file)