From 8a694a365ae95e4fad31ac0a2d23197e5a8634ea Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Wed, 12 Feb 2014 09:10:09 -0800 Subject: [PATCH] Hack so people can override their own settings Without this, people have to edit parts of the repo to configure things. Thus making it hard to do a future git pull. I can think of more elegant ways of doing this but this should do for starters. --- pydash/settings.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pydash/settings.py b/pydash/settings.py index 97afd3a..51a6bd1 100644 --- a/pydash/settings.py +++ b/pydash/settings.py @@ -135,4 +135,9 @@ LOGGING = { 'propagate': True, }, } -} \ No newline at end of file +} + +try: + from local_settings import * +except ImportError: + pass