summaryrefslogtreecommitdiff
path: root/portato/constants.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-11-02 21:59:47 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-11-02 21:59:47 +0100
commitc3bc1482872c4199114decd3a9f68b046433b5a0 (patch)
tree0ed910b921e46c706dfc415e120ac1f22f2f0a52 /portato/constants.py
parent667747a0a9df9e6ad21bf7849a8e0ec80e4792f6 (diff)
downloadportato-c3bc1482872c4199114decd3a9f68b046433b5a0.tar.gz
portato-c3bc1482872c4199114decd3a9f68b046433b5a0.tar.bz2
portato-c3bc1482872c4199114decd3a9f68b046433b5a0.zip
Merge in SQL stuff
Diffstat (limited to 'portato/constants.py')
-rw-r--r--portato/constants.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/portato/constants.py b/portato/constants.py
index 3d7217f..79ad0f2 100644
--- a/portato/constants.py
+++ b/portato/constants.py
@@ -22,6 +22,8 @@ These should be set during the installation.
@type HOME: string
@var SU_COMMAND: command to execute to "su"
@type SU_COMMAND: string
+@var USE_SQL: whether to use the sqlite db
+@type USE_SQL: boolean
@var CONFIG_DIR: The configuration directory.
@type CONFIG_DIR: string
@@ -56,6 +58,7 @@ APP = "portato"
VERSION = "9999"
HOME = os.environ["HOME"]
SU_COMMAND = "gksu -D 'Portato'"
+USE_SQL = True
# config
CONFIG_DIR = "/etc/portato/"