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 ee3c56e commit 3c8d2abCopy full SHA for 3c8d2ab
roundup/configuration.py
@@ -1,6 +1,6 @@
1
# Roundup Issue Tracker configuration support
2
#
3
-# $Id: configuration.py,v 1.8 2004-07-26 00:23:16 richard Exp $
+# $Id: configuration.py,v 1.9 2004-07-26 05:59:45 a1s Exp $
4
5
__docformat__ = "restructuredtext"
6
@@ -637,7 +637,7 @@ def load(self, tracker_home):
637
def load_ini(self, tracker_home):
638
"""Set options from config.ini file in given tracker_home directory"""
639
# parse the file
640
- _config = ConfigParser.ConfigParser()
+ _config = ConfigParser.ConfigParser({"TRACKER_HOME": tracker_home})
641
_config.read([os.path.join(tracker_home, self.INI_FILE)])
642
# .ini file loaded ok. set the options, starting from TRACKER_HOME
643
self.reset()
0 commit comments