We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ded4b0b commit f16014eCopy full SHA for f16014e
roundup/configuration.py
@@ -1,6 +1,6 @@
1
# Roundup Issue Tracker configuration support
2
#
3
-# $Id: configuration.py,v 1.3 2004-07-25 13:12:59 a1s Exp $
+# $Id: configuration.py,v 1.4 2004-07-25 13:21:38 a1s Exp $
4
5
__docformat__ = "restructuredtext"
6
@@ -511,10 +511,10 @@ def __init__(self, tracker_home=None):
511
_option = _class(self, _section, *_args)
512
self.add_option(_option)
513
# load the config if tracker_home given
514
- if tracker_home is not None:
515
- self.load(tracker_home)
516
- else:
+ if tracker_home is None:
517
self.init_logging()
+ else:
+ self.load(tracker_home)
518
519
def add_option(self, option):
520
"""Adopt a new Option object"""
0 commit comments