Skip to content

Commit d8bdf15

Browse files
author
Alexander Smishlajev
committed
fix load_ini: configuration file name was ignored after all
1 parent eb52332 commit d8bdf15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Roundup Issue Tracker configuration support
22
#
3-
# $Id: configuration.py,v 1.17 2004-10-17 17:35:32 a1s Exp $
3+
# $Id: configuration.py,v 1.18 2004-10-29 20:34:36 a1s Exp $
44
#
55
__docformat__ = "restructuredtext"
66

@@ -846,7 +846,7 @@ def load_ini(self, config_path, defaults=None):
846846
if defaults:
847847
config_defaults.update(defaults)
848848
config = ConfigParser.ConfigParser(config_defaults)
849-
config.read([os.path.join(home_dir, self.INI_FILE)])
849+
config.read([config_path])
850850
# .ini file loaded ok.
851851
self.HOME = home_dir
852852
self.filepath = config_path

0 commit comments

Comments
 (0)