mercurial/subrepo.py
changeset 13525 c12088259f64
parent 13466 f2295f7cd468
child 13532 d4c2f2ac3ff7
--- a/mercurial/subrepo.py	Wed Mar 02 14:52:31 2011 +0100
+++ b/mercurial/subrepo.py	Wed Mar 02 12:19:18 2011 -0500
@@ -759,8 +759,10 @@
 
     def _fetch(self, source, revision):
         if not os.path.exists(os.path.join(self._abspath, '.git')):
-            self._ui.status(_('cloning subrepo %s\n') % self._relpath)
-            self._gitnodir(['clone', self._abssource(source), self._abspath])
+            source = self._abssource(source)
+            self._ui.status(_('cloning subrepo %s from %s\n') %
+                            (self._relpath, source))
+            self._gitnodir(['clone', source, self._abspath])
         if self._githavelocally(revision):
             return
         self._ui.status(_('pulling subrepo %s\n') % self._relpath)