Mercurial > p > roundup > code
diff roundup/instance.py @ 1953:800b226bba58
fix roundup win service
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sat, 06 Dec 2003 02:46:34 +0000 |
| parents | d2801a2b0a77 |
| children | fc52d57c6c3e |
line wrap: on
line diff
--- a/roundup/instance.py Sat Dec 06 00:00:54 2003 +0000 +++ b/roundup/instance.py Sat Dec 06 02:46:34 2003 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: instance.py,v 1.10 2003-09-04 00:47:01 richard Exp $ +# $Id: instance.py,v 1.11 2003-12-06 02:46:34 richard Exp $ __doc__ = ''' Tracker handling (open tracker). @@ -43,7 +43,7 @@ self._load_config('security.py', db=db) - def __load_python(self, file): + def _load_python(self, file): file = os.path.join(tracker_home, file) vars = Vars() execfile(file, vars.__dict__)
