summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authoramk <devnull@localhost>2005-05-21 17:56:28 +0000
committeramk <devnull@localhost>2005-05-21 17:56:28 +0000
commitac7a7832a85700eb41e1aeb7dbc81ad22e0c6890 (patch)
tree99fe237db296ede710a3f9166aede3bf620362b1 /config.py
parentf64ca624bef465c1072c0c6c2b00bf772d66eef5 (diff)
downloaddecorator-ac7a7832a85700eb41e1aeb7dbc81ad22e0c6890.tar.gz
Add database password setting
Diffstat (limited to 'config.py')
-rw-r--r--config.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.py b/config.py
index 94acd13..0404227 100644
--- a/config.py
+++ b/config.py
@@ -9,6 +9,7 @@ class Config:
c.read(configfile)
self.database_name = c.get('database', 'name')
self.database_user = c.get('database', 'user')
+ self.database_pw = c.get('database', 'password')
self.database_files_dir = c.get('database', 'files_dir')
self.mailhost = c.get('webui', 'mailhost')