A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
| /home/joshua/.public_html/hg/lib/python/mercurial/hgweb.py in __init__(self=<mercurial.hgweb.hgweb instance at 0xb7cf89ac>, repo='/home/poess/.public_html/hg/repositories/burnnt', name='BurnNT') |
172 def __init__(self, repo, name=None):
|
173 if type(repo) == type(""):
|
174 self.repo = hg.repository(ui.ui(), repo)
|
175 else:
|
176 self.repo = repo
|
| self = <mercurial.hgweb.hgweb instance at 0xb7cf89ac>, self.repo undefined, global hg = <module 'mercurial.hg' from '/home/joshua/.public_html/hg/lib/python/mercurial/hg.py'>, hg.repository = <function repository at 0xb7d021b4>, global ui = <module 'mercurial.ui' from '/home/joshua/.public_html/hg/lib/python/mercurial/ui.py'>, ui.ui = <class mercurial.ui.ui at 0x80ff1ac>, repo = '/home/poess/.public_html/hg/repositories/burnnt' |
| /home/joshua/.public_html/hg/lib/python/mercurial/hg.py in repository(ui=<mercurial.ui.ui instance at 0xb7bcf46c>, path='/home/poess/.public_html/hg/repositories/burnnt', create=0) |
24 ui, path.replace("old-http://", "http://"))
|
25 if path.startswith("ssh://"):
|
26 return sshrepo.sshrepository(ui, path)
|
27
|
28 return localrepo.localrepository(ui, path, create)
|
| global localrepo = <module 'mercurial.localrepo' from '/home/joshua/.public_html/hg/lib/python/mercurial/localrepo.py'>, localrepo.localrepository = <class mercurial.localrepo.localrepository at 0x8135b9c>, ui = <mercurial.ui.ui instance at 0xb7bcf46c>, path = '/home/poess/.public_html/hg/repositories/burnnt', create = 0 |
| /home/joshua/.public_html/hg/lib/python/mercurial/localrepo.py in __init__(self=<mercurial.localrepo.localrepository instance at 0x80f91ec>, ui=<mercurial.ui.ui instance at 0xb7bcf46c>, path='/home/poess/.public_html/hg/repositories/burnnt', create=0) |
24
|
25 if not create and not os.path.isdir(self.path):
|
26 raise repo.RepoError("repository %s not found" % self.path)
|
27
|
28 self.root = os.path.abspath(path)
|
| global repo = <module 'mercurial.repo' from '/home/joshua/.public_html/hg/lib/python/mercurial/repo.py'>, repo.RepoError = <class 'mercurial.repo.RepoError'>, self = <mercurial.localrepo.localrepository instance at 0x80f91ec>, self.path = '/home/poess/.public_html/hg/repositories/burnnt/.hg' |