Skip to content
Snippets Groups Projects
Commit cbd04ce6 authored by James Mills's avatar James Mills
Browse files

dirstate: fix invalid reference to self.ui

parent 1aee2ab0
No related branches found
No related tags found
No related merge requests found
......@@ -662,7 +662,7 @@
filename = self._filename
if tr is False: # not explicitly specified
if (self._ui.configbool('devel', 'all-warnings')
or self.ui.configbool('devel', 'check-dirstate-write')):
or self._ui.configbool('devel', 'check-dirstate-write')):
self._ui.develwarn('use dirstate.write with '
'repo.currenttransaction()')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment