A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
| /var/lib/python-support/python2.5/mercurial/hgweb/__init__.py in hgweb(*args=('/home/tele/gjc/hg/gnome-python/pygtk-scons', 'PyGTK SCons'), **kwargs={}) |
10
|
11 def hgweb(*args, **kwargs):
|
12 return hgweb_mod.hgweb(*args, **kwargs)
|
13
|
14 def hgwebdir(*args, **kwargs):
|
| global hgweb_mod = <module 'mercurial.hgweb.hgweb_mod' from '/var/l...support/python2.5/mercurial/hgweb/hgweb_mod.pyc'>, hgweb_mod.hgweb = <class 'mercurial.hgweb.hgweb_mod.hgweb'>, args = ('/home/tele/gjc/hg/gnome-python/pygtk-scons', 'PyGTK SCons'), kwargs = {} |
| /var/lib/python-support/python2.5/mercurial/hgweb/hgweb_mod.py in __init__(self=<mercurial.hgweb.hgweb_mod.hgweb object at 0x7f73b9121fd0>, repo='/home/tele/gjc/hg/gnome-python/pygtk-scons', name='PyGTK SCons') |
67 if isinstance(repo, str):
|
68 parentui = ui.ui(report_untrusted=False, interactive=False)
|
69 self.repo = hg.repository(parentui, repo)
|
70 else:
|
71 self.repo = repo
|
| self = <mercurial.hgweb.hgweb_mod.hgweb object at 0x7f73b9121fd0>, self.repo undefined, global hg = <module 'mercurial.hg' from '/var/lib/python-support/python2.5/mercurial/hg.pyc'>, hg.repository = <function repository at 0x7f73b95b42a8>, parentui = <mercurial.ui.ui object at 0x7f73b9129050>, repo = '/home/tele/gjc/hg/gnome-python/pygtk-scons' |
| /var/lib/python-support/python2.5/mercurial/hg.py in repository(ui=<mercurial.ui.ui object at 0x7f73b9129050>, path='/home/tele/gjc/hg/gnome-python/pygtk-scons', create=False) |
60 def repository(ui, path='', create=False):
|
61 """return a repository object for the specified path"""
|
62 repo = _lookup(path).instance(ui, path, create)
|
63 ui = getattr(repo, "ui", ui)
|
64 for name, module in extensions.extensions():
|
| repo undefined, global _lookup = <function _lookup at 0x7f73b95b41b8>, path = '/home/tele/gjc/hg/gnome-python/pygtk-scons', ).instance undefined, ui = <mercurial.ui.ui object at 0x7f73b9129050>, create = False |
| /var/lib/python-support/python2.5/mercurial/localrepo.py in instance(ui=<mercurial.ui.ui object at 0x7f73b9129050>, path='/home/tele/gjc/hg/gnome-python/pygtk-scons', create=False) |
1987
|
1988 def instance(ui, path, create):
|
1989 return localrepository(ui, util.drop_scheme('file', path), create)
|
1990
|
1991 def islocal(path):
|
| global localrepository = <class 'mercurial.localrepo.localrepository'>, ui = <mercurial.ui.ui object at 0x7f73b9129050>, global util = <module 'mercurial.util' from '/var/lib/python-support/python2.5/mercurial/util.pyc'>, util.drop_scheme = <function drop_scheme at 0x7f73ba91b2a8>, path = '/home/tele/gjc/hg/gnome-python/pygtk-scons', create = False |