# HG changeset patch # User Matt Harbison # Date 1418501587 18000 # Node ID 9626120e017be141dbfcddc6a9a0442245734c61 # Parent 3f86fe9bcef0b67d1e5149e66630e46cb515ea90 subrepo: drop the '_ui' member in the subrepo subclasses This member has existed in the base class since fcbc66b5da6a. diff -r 3f86fe9bcef0 -r 9626120e017b mercurial/subrepo.py --- a/mercurial/subrepo.py Tue Dec 09 09:35:04 2014 -0500 +++ b/mercurial/subrepo.py Sat Dec 13 15:13:07 2014 -0500 @@ -901,7 +901,6 @@ self._path = path self._state = state self._ctx = ctx - self._ui = ctx._repo.ui self._exe = util.findexe('svn') if not self._exe: raise util.Abort(_("'svn' executable not found for subrepo '%s'") @@ -1135,7 +1134,6 @@ self._relpath = os.path.join(reporelpath(ctx._repo), path) self._abspath = ctx._repo.wjoin(path) self._subparent = ctx._repo - self._ui = ctx._repo.ui self._ensuregit() def _ensuregit(self):