changeset 12208:482443557cad

mq: add newline after qfold warning
author Patrick Mezard <pmezard@gmail.com>
date Fri, 10 Sep 2010 22:36:04 +0200
parents 97e37994a6c3
children affec9fb56ef
files hgext/mq.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/mq.py	Fri Sep 10 20:19:16 2010 +0200
+++ b/hgext/mq.py	Fri Sep 10 22:36:04 2010 +0200
@@ -2120,7 +2120,7 @@
     for f in files:
         p = q.lookup(f)
         if p in patches or p == parent:
-            ui.warn(_('Skipping already folded patch %s') % p)
+            ui.warn(_('Skipping already folded patch %s\n') % p)
         if q.isapplied(p):
             raise util.Abort(_('qfold cannot fold already applied patch %s') % p)
         patches.append(p)