Commit d472d2f7fa573553360647fe9f2f2fd8d9e6764d

Authored by Etienne Pallier
1 parent 03814884
Exists in dev

comments

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
src/pyros/settings.py
... ... @@ -129,12 +129,12 @@ LOGIN_URL = "/"
129 129 ''' DO NOT TOUCH THESE VARIABLES
130 130 "$ pyros.py simulator_development" will automatically set them to "True"
131 131 '''
132   -# FOR SIMULATOR (htopTODO: remove because not used)
  132 +# FOR SIMULATOR (TODO: remove because not used)
133 133 SIMULATOR = False
134 134 # FOR SIMULATOR (and TESTS)
135 135 CELERY_TEST = False
136 136  
137   -# CELERY_TEST = False ==> DEFAULT (NORMAL) RUN MODE, use pyros (normal) database
  137 +# CELERY_TEST==False ==> DEFAULT (NORMAL) RUN MODE, use pyros (normal) database
138 138 if not CELERY_TEST:
139 139 if not MYSQL:
140 140 DATABASES = {
... ... @@ -153,7 +153,7 @@ if not CELERY_TEST:
153 153 }
154 154 }
155 155  
156   -# CELERY_TEST = False ==> 'TEST' RUN MODE, use pyros_test database
  156 +# CELERY_TEST==True ==> 'TEST' RUN MODE, use pyros_test database
157 157 else:
158 158 DATABASES = {
159 159 'default': {
... ...