make sure common.keys overrides common

pull/91/head
eric 2018-06-07 13:05:25 -04:00
parent 3028c5f19d
commit f597da88aa
1 changed files with 5 additions and 5 deletions

View File

@ -7,11 +7,6 @@ from os.path import dirname, realpath, join
import regluit
from regluit.payment.parameters import PAYMENT_HOST_PAYPAL, PAYMENT_HOST_AMAZON
try:
from .keys.common import *
except ImportError:
print 'no real key file found, using dummy'
from .dummy.common import *
PROJECT_DIR = dirname(dirname(realpath(__file__)))
@ -478,6 +473,11 @@ QUESTIONNAIRE_SHOW_ITEM_RESULTS = False
FIREFOX_PATH = ''
CHROMEDRIVER_PATH = ''
try:
from .keys.common import *
except ImportError:
print 'no real key file found, using dummy'
from .dummy.common import *
try:
from .keys.host import *