Skip to content

Commit 0c3d765

Browse files
author
Alexander Smishlajev
committed
Main Roundup configuration class renamed to CoreConfig.
1 parent efc5346 commit 0c3d765

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

roundup/instance.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: instance.py,v 1.18 2004-07-27 02:30:31 richard Exp $
18+
# $Id: instance.py,v 1.19 2004-07-27 11:34:11 a1s Exp $
1919

2020
'''Tracker handling (open tracker).
2121
@@ -34,7 +34,7 @@ def __init__(self, vars):
3434
class Tracker:
3535
def __init__(self, tracker_home):
3636
self.tracker_home = tracker_home
37-
self.config = configuration.Config(tracker_home)
37+
self.config = configuration.CoreConfig(tracker_home)
3838
self.cgi_actions = {}
3939
self.templating_utils = {}
4040

@@ -148,7 +148,7 @@ def open(self, tracker_home):
148148
'Required tracker attribute "%s" missing'%required
149149

150150
# load and apply the config
151-
tracker.config = configuration.Config(tracker_home)
151+
tracker.config = configuration.CoreConfig(tracker_home)
152152
# FIXME! dbinit does "import config".
153153
# What would be the upgrade plan for existing trackers?
154154
tracker.dbinit.config = tracker.config

0 commit comments

Comments
 (0)