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. 5
      pydash/settings.py

5
pydash/settings.py

@ -136,3 +136,8 @@ LOGGING = {
},
}
}
try:
from local_settings import *
except ImportError:
pass
Loading…
Cancel
Save