diff --git a/settings/__init__.py b/settings/__init__.py index d9eedbebedad3ca253587aff83dab8f33502d761..3ede21b94b1c5b5c96d06342e2f1abbac95dc321 100644 --- a/settings/__init__.py +++ b/settings/__init__.py @@ -50,7 +50,7 @@ if (hostname == 'gracedb-test'): # Import custom settings settings_module = __import__('%s' % config, globals(), locals(), 'gracedb') -# Load the custom config settings properties into the local scope. +# Load custom settings for this server into the local scope. for setting in dir(settings_module): if setting == setting.upper(): locals()[setting] = getattr(settings_module, setting)