diff mercurial/transaction.py @ 24900:774ee9800146

transaction: add missing newline to message Add a missing newline to the "journal was created by a different version of Mercurial" message.
author Michael O'Connor <moconnor@janestreet.com>
date Tue, 14 Apr 2015 10:59:26 -0400
parents ef22cfff7052
children 0d0ed375fbdf fd905b2bea59
line wrap: on
line diff
--- a/mercurial/transaction.py
+++ b/mercurial/transaction.py
@@ -542,6 +542,6 @@
                         backupentries.append((l, f, b, bool(c)))
             else:
                 report(_("journal was created by a different version of "
-                         "Mercurial"))
+                         "Mercurial\n"))
 
     _playback(file, report, opener, vfsmap, entries, backupentries)