Mercurial > public > mercurial-scm > hg-stable
diff mercurial/subrepo.py @ 10668:05856e682521
subrepo: print subrepo pulling URL
author | Edouard Gomez <ed.gomez@free.fr> |
---|---|
date | Fri, 12 Mar 2010 01:23:35 +0100 |
parents | f77f3383c666 |
children | 97022cef0a20 |
line wrap: on
line diff
--- a/mercurial/subrepo.py Sat Mar 13 12:57:20 2010 +0100 +++ b/mercurial/subrepo.py Fri Mar 12 01:23:35 2010 +0100 @@ -217,8 +217,8 @@ self._repo.lookup(revision) except error.RepoError: self._repo._subsource = source - self._repo.ui.status(_('pulling subrepo %s\n') % self._path) srcurl = _abssource(self._repo) + self._repo.ui.status(_('pulling subrepo %s from %s\n') % (self._path, srcurl)) other = hg.repository(self._repo.ui, srcurl) self._repo.pull(other)