phase: fix warning text from invalid remote phase stable
authorPierre-Yves David <pierre-yves.david@logilab.fr>
Fri, 20 Jan 2012 19:18:09 +0100
branchstable
changeset 15953 52dc2b33d0be
parent 15952 ec8a9e06cf05
child 15954 b345f851d056
phase: fix warning text from invalid remote phase add missing end of line and substitution.
mercurial/phases.py
--- a/mercurial/phases.py	Fri Jan 20 18:45:29 2012 +0100
+++ b/mercurial/phases.py	Fri Jan 20 19:18:09 2012 +0100
@@ -276,14 +276,14 @@
         phase = int(phase)
         if phase == 0:
             if node != nullid:
-                msg = _('ignoring inconsistent public root from remote: %s')
-                repo.ui.warn(msg, nhex)
+                repo.ui.warn(_('ignoring inconsistent public root'
+                               ' from remote: %s\n') % nhex)
         elif phase == 1:
             if node in nodemap:
                 draftroots.append(node)
         else:
-            msg = _('ignoring unexpected root from remote: %i %s')
-            repo.ui.warn(msg, phase, nhex)
+            repo.ui.warn(_('ignoring unexpected root from remote: %i %s\n')
+                         % (phase, nhex))
     # compute heads
     revset = repo.set('heads((%ln + parents(%ln)) - (%ln::%ln))',
                       subset, draftroots, draftroots, subset)