diff options
author | Magnus Hagander | 2014-05-21 15:49:12 +0000 |
---|---|---|
committer | Magnus Hagander | 2014-05-21 15:49:12 +0000 |
commit | 3f9028639968956d9cf06ec030930b6d87508f55 (patch) | |
tree | 0514544fcc343a05355b7a9cebb51bffe7ffedcd | |
parent | 68c4fedab30ec14b8326c8162ce7bc0d320b1c39 (diff) |
Don't fail on missing local_settings.py
-rw-r--r-- | pgcommitfest/settings.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pgcommitfest/settings.py b/pgcommitfest/settings.py index 5ccf8b9..bab2499 100644 --- a/pgcommitfest/settings.py +++ b/pgcommitfest/settings.py @@ -168,4 +168,7 @@ ARCHIVES_HOST="archives.postgresql.org" # Host: header to send HACKERS_EMAIL="pgsql-hackers-testing@localhost" # Load local settings overrides -from local_settings import * +try: + from local_settings import * +except ImportError: + pass |