Mercurial > p > roundup > code
changeset 3020:e4bac783c617 maint-0.8
force the [trackers] section in config...
...even if no trackers specified on the command line
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Wed, 22 Dec 2004 06:38:08 +0000 |
| parents | 80ecc86dc45d |
| children | 3a42d4578bdb |
| files | roundup/scripts/roundup_server.py |
| diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/scripts/roundup_server.py Wed Dec 15 00:07:58 2004 +0000 +++ b/roundup/scripts/roundup_server.py Wed Dec 22 06:38:08 2004 +0000 @@ -17,7 +17,7 @@ """Command-line script that runs a server over roundup.cgi.client. -$Id: roundup_server.py,v 1.74 2004-11-22 07:11:30 a1s Exp $ +$Id: roundup_server.py,v 1.74.2.1 2004-12-22 06:38:08 a1s Exp $ """ __docformat__ = 'restructuredtext' @@ -359,6 +359,7 @@ def __init__(self, config_file=None): configuration.Config.__init__(self, config_file, self.SETTINGS) + self.sections.append("trackers") def _adjust_options(self, config): """Add options for tracker homes"""
