mirror of
https://github.com/ansible/awx.git
synced 2026-05-09 02:17:37 -02:30
Fix typo in development settings.
This commit is contained in:
@@ -18,6 +18,6 @@ try:
|
|||||||
sys.modules['local_settings'] = dummymodule(local_settings_file)
|
sys.modules['local_settings'] = dummymodule(local_settings_file)
|
||||||
except IOError, e:
|
except IOError, e:
|
||||||
from django.core.exceptions import ImproperlyConfigured
|
from django.core.exceptions import ImproperlyConfigured
|
||||||
if os.path.exists(settings_file):
|
if os.path.exists(local_settings_file):
|
||||||
msg = 'Unable to load %s: %s' % (local_settings_file, str(e))
|
msg = 'Unable to load %s: %s' % (local_settings_file, str(e))
|
||||||
raise ImproperlyConfigured(msg)
|
raise ImproperlyConfigured(msg)
|
||||||
|
|||||||
Reference in New Issue
Block a user