diff options
author | Sean Finney <seanius@debian.org> | 2008-09-12 10:53:59 +0200 |
---|---|---|
committer | Sean Finney <seanius@debian.org> | 2008-09-12 10:53:59 +0200 |
commit | a93849a9178babe687a9625d3dad20c0a4256378 (patch) | |
tree | 4922e00dfcff26335e32adb5c254d2987ab0d9f4 | |
parent | 8e9ca36b493f91245351b589e44f6679cca4937d (diff) | |
download | patch-tracker-a93849a9178babe687a9625d3dad20c0a4256378.tar.gz |
add a local configuration file ignored by git
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | patchtracker/Conf.py | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -3,3 +3,4 @@ templates/skeleton.py templates/*.py.bak .*.swp *.db +/localconfig.py diff --git a/patchtracker/Conf.py b/patchtracker/Conf.py index 4d22909..df6eecd 100755 --- a/patchtracker/Conf.py +++ b/patchtracker/Conf.py @@ -7,3 +7,8 @@ static_dir = './static' root_url = '' database = 'pt.db' sqlschema = 'db.sql' + +try: + from localconfig import * +except ImportError: + pass |