Discussion:
[thg-dev] AttributeError after 93da8aebf72c
André Sintzoff
2013-10-10 17:04:32 UTC
Permalink
At TortoiseHg startup, I get:

#!python
** Mercurial version (2.7.2+30-e828975722c8). TortoiseHg version
(2.9.2+7-93da8aebf72c)
** Command:
** CWD: /Users/as/hg-repo/thg-build/thg
** Encoding: UTF-8
** Extensions loaded: mercurial_keyring, evolve, strip, mq, rebase
** Python version: 2.6.6 (r266:84374, Aug 31 2010, 11:00:51) [GCC
4.0.1 (Apple Inc. build 5493)]
** System: Darwin amical.local 10.8.0 Darwin Kernel Version
10.8.0: Tue Jun 7 16:33:36 PDT 2011;
root:xnu-1504.15.3~1/RELEASE_I386 i386
** Qt-4.7.4 PyQt-4.8.6 QScintilla-2.6
Traceback (most recent call last):
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 49, in dispatch
return _runcatch(u, args)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 226, in _runcatch
return runcommand(ui, args)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 306, in runcommand
return _runcommand(lui, options, cmd, d)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 357, in _runcommand
return checkargs()
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 311, in checkargs
return cmdfunc()
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 305, in <lambda>
d = lambda: qtrun(checkedfunc, ui, *args, **cmdoptions)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/qtapp.py",
line 320, in __call__
dlg, reporoot = self._createdialog(dlgfunc, args, opts)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/qtapp.py",
line 363, in _createdialog
return dlgfunc(self._ui, *args, **opts), reporoot
File "/Users/as/hg-repo/thg-build/hg/mercurial/util.py", line
512, in check
return func(*args, **kwargs)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 828, in log
w = _workbench(ui, *pats, **opts)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 395, in _workbench
w = qtrun.createWorkbench()
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/qtapp.py",
line 399, in createWorkbench
self._workbench = workbench.Workbench(self._ui, self._repomanager)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/workbench.py",
line 76, in __init__
self.restoreSettings()
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/workbench.py",
line 1183, in restoreSettings
self.openRepo(upath, False)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/workbench.py",
line 674, in openRepo
self.addRepoTab(repoagent, bundle)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/workbench.py",
line 886, in addRepoTab
self._repoTabTitleChangedMapper, SLOT('map()'))
AttributeError: 'Workbench' object has no attribute
'_repoTabTitleChangedMapper'
Yuya Nishihara
2013-10-10 17:26:34 UTC
Permalink
Post by André Sintzoff
#!python
** Mercurial version (2.7.2+30-e828975722c8). TortoiseHg version
(2.9.2+7-93da8aebf72c)
** CWD: /Users/as/hg-repo/thg-build/thg
** Encoding: UTF-8
** Extensions loaded: mercurial_keyring, evolve, strip, mq, rebase
** Python version: 2.6.6 (r266:84374, Aug 31 2010, 11:00:51) [GCC
4.0.1 (Apple Inc. build 5493)]
** System: Darwin amical.local 10.8.0 Darwin Kernel Version
10.8.0: Tue Jun 7 16:33:36 PDT 2011;
root:xnu-1504.15.3~1/RELEASE_I386 i386
** Qt-4.7.4 PyQt-4.8.6 QScintilla-2.6
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 49, in dispatch
return _runcatch(u, args)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 226, in _runcatch
return runcommand(ui, args)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 306, in runcommand
return _runcommand(lui, options, cmd, d)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 357, in _runcommand
return checkargs()
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 311, in checkargs
return cmdfunc()
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 305, in <lambda>
d = lambda: qtrun(checkedfunc, ui, *args, **cmdoptions)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/qtapp.py",
line 320, in __call__
dlg, reporoot = self._createdialog(dlgfunc, args, opts)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/qtapp.py",
line 363, in _createdialog
return dlgfunc(self._ui, *args, **opts), reporoot
File "/Users/as/hg-repo/thg-build/hg/mercurial/util.py", line
512, in check
return func(*args, **kwargs)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 828, in log
w = _workbench(ui, *pats, **opts)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/run.py",
line 395, in _workbench
w = qtrun.createWorkbench()
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/qtapp.py",
line 399, in createWorkbench
self._workbench = workbench.Workbench(self._ui, self._repomanager)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/workbench.py",
line 76, in __init__
self.restoreSettings()
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/workbench.py",
line 1183, in restoreSettings
self.openRepo(upath, False)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/workbench.py",
line 674, in openRepo
self.addRepoTab(repoagent, bundle)
File "/Users/as/hg-repo/thg-build/thg/tortoisehg/hgqt/workbench.py",
line 886, in addRepoTab
self._repoTabTitleChangedMapper, SLOT('map()'))
AttributeError: 'Workbench' object has no attribute
'_repoTabTitleChangedMapper'
Fixed, thanks.

Loading...