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 /patchtracker/Conf.py | |
parent | 8e9ca36b493f91245351b589e44f6679cca4937d (diff) | |
download | patch-tracker-a93849a9178babe687a9625d3dad20c0a4256378.tar.gz |
add a local configuration file ignored by git
Diffstat (limited to 'patchtracker/Conf.py')
-rwxr-xr-x | patchtracker/Conf.py | 5 |
1 files changed, 5 insertions, 0 deletions
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 |