Corrected default boolean state for IS_CORP comparisons

This commit is contained in:
Adarnof 2015-11-06 22:39:17 +00:00
parent 75676e7887
commit b8ac8c7561

View File

@ -161,7 +161,7 @@ STATIC_URL = '/static/'
# Set to FALSE for alliance # Set to FALSE for alliance
# Set to TRUE for corp # Set to TRUE for corp
########################### ###########################
IS_CORP = 'False' == os.environ.get('AA_IS_CORP', 'True') IS_CORP = 'True' == os.environ.get('AA_IS_CORP', 'True')
################# #################