make sure common.keys overrides common
parent
3028c5f19d
commit
f597da88aa
|
@ -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 *
|
||||
|
|
Loading…
Reference in New Issue