Browse Source

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.
windows
Peter Bengtsson 12 years ago
parent
commit
8a694a365a
  1. 7
      pydash/settings.py

7
pydash/settings.py

@ -135,4 +135,9 @@ LOGGING = {
'propagate': True, 'propagate': True,
}, },
} }
}
}
try:
from local_settings import *
except ImportError:
pass
Loading…
Cancel
Save