aboutsummaryrefslogtreecommitdiffstats
path: root/server/config.py
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2011-04-23 18:50:43 -0400
committerGuillaume Horel <guillaume.horel@gmail.com>2011-04-23 18:50:43 -0400
commitb0a365ec96927f6076e08004ec2a73f1eb83370d (patch)
tree12e409cfb244b06953faafbbf2d342421bb3722a /server/config.py
parente7531d86ce53d86b1a0b2df9c25c25f98b95c715 (diff)
downloadalias-b0a365ec96927f6076e08004ec2a73f1eb83370d.tar.gz
Fixed the background options.
basic functionality should work now. Need to figure out how to redirect the logs to a file
Diffstat (limited to 'server/config.py')
-rw-r--r--server/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/config.py b/server/config.py
index f693468..755477b 100644
--- a/server/config.py
+++ b/server/config.py
@@ -11,6 +11,6 @@ class AliasConfigParser(ConfigParser.RawConfigParser):
self.host = self.get("component", "host")
self.secret = self.get("component", "secret")
self.port = self.getint("component", "port")
- self.background = self.get("component", "background")
+ self.background = self.getboolean("component", "background")
config = AliasConfigParser()