---
django/conf/__init__.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/django/conf/__init__.py b/django/conf/__init__.py
index 47eec6a..f2012a6 100644
a
|
b
|
class Settings(BaseSettings):
|
86 | 86 | try: |
87 | 87 | mod = importlib.import_module(self.SETTINGS_MODULE) |
88 | 88 | except ImportError, e: |
89 | | raise ImportError("Could not import settings '%s' (Is it on sys.path? Does it have syntax errors?): %s" % (self.SETTINGS_MODULE, e)) |
| 89 | raise ImportError("Could not import settings '%s' (Is it on sys.path?): %s" % (self.SETTINGS_MODULE, e)) |
90 | 90 | |
91 | 91 | # Settings that should be converted into tuples if they're mistakenly entered |
92 | 92 | # as strings. |