diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2011-04-23 16:52:45 -0400 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2011-04-23 16:52:45 -0400 |
| commit | 2b1ab3316033265f5dbedd880bd93d3f57cde5a1 (patch) | |
| tree | 81ea7ec2a552357d8928a4e72c55dcf73525299d /server/config.py | |
| parent | 7a440ab19f974948f5958f7ebc0df826e98e5cfb (diff) | |
| download | alias-2b1ab3316033265f5dbedd880bd93d3f57cde5a1.tar.gz | |
Add option to run server in the background.
Diffstat (limited to 'server/config.py')
| -rw-r--r-- | server/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/config.py b/server/config.py index d50d4d7..f693468 100644 --- a/server/config.py +++ b/server/config.py @@ -11,5 +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") config = AliasConfigParser() |
