Fix typo in development settings.

This commit is contained in:
Chris Church 2013-07-30 22:48:19 -04:00
parent 01d7df3ab2
commit 8ccf4c0a89

View File

@ -18,6 +18,6 @@ try:
sys.modules['local_settings'] = dummymodule(local_settings_file)
except IOError, e:
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))
raise ImproperlyConfigured(msg)