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/hgweb_mod.py in __init__(self=<mercurial.hgweb.hgweb_mod.hgweb object at 0x7361140e0250>, repo='/home/n01senet/n01se.net/agriffis/skel.hg', name='agriffis dotfiles') |
85 if isinstance(repo, str):
|
86 parentui = ui.ui(report_untrusted=False, interactive=False)
|
87 self.repo = hg.repository(parentui, repo)
|
88 else:
|
89 self.repo = repo
|
| self = <mercurial.hgweb.hgweb_mod.hgweb object at 0x7361140e0250>, self.repo undefined, global hg = <module 'mercurial.hg' from '/var/lib/python-support/python2.5/mercurial/hg.pyc'>, hg.repository = <function repository at 0x736114021c08>, parentui = <mercurial.ui.ui object at 0x736114063110>, repo = '/home/n01senet/n01se.net/agriffis/skel.hg' |
| /var/lib/python-support/python2.5/mercurial/hg.py in repository(ui=<mercurial.ui.ui object at 0x736114063110>, path='/home/n01senet/n01se.net/agriffis/skel.hg', create=False) |
58 def repository(ui, path='', create=False):
|
59 """return a repository object for the specified path"""
|
60 repo = _lookup(path).instance(ui, path, create)
|
61 ui = getattr(repo, "ui", ui)
|
62 for name, module in extensions.extensions():
|
| repo undefined, global _lookup = <function _lookup at 0x736114021b18>, path = '/home/n01senet/n01se.net/agriffis/skel.hg', ).instance undefined, ui = <mercurial.ui.ui object at 0x736114063110>, create = False |
| /var/lib/python-support/python2.5/mercurial/localrepo.py in instance(ui=<mercurial.ui.ui object at 0x736114063110>, path='/home/n01senet/n01se.net/agriffis/skel.hg', create=False) |
2133
|
2134 def instance(ui, path, create):
|
2135 return localrepository(ui, util.drop_scheme('file', path), create)
|
2136
|
2137 def islocal(path):
|
| global localrepository = <class 'mercurial.localrepo.localrepository'>, ui = <mercurial.ui.ui object at 0x736114063110>, global util = <module 'mercurial.util' from '/var/lib/python-support/python2.5/mercurial/util.pyc'>, util.drop_scheme = <function drop_scheme at 0x736113fc81b8>, path = '/home/n01senet/n01se.net/agriffis/skel.hg', create = False |