mercurial/hg.py
changeset 713 7c385bd5f993
parent 705 574869103985
child 721 fed842bb84b2
child 725 c6b912f8b5b2
--- a/mercurial/hg.py	Fri Jul 15 13:42:19 2005 +0100
+++ b/mercurial/hg.py	Fri Jul 15 21:31:35 2005 +0100
@@ -216,7 +216,8 @@
                     # item not found, insert a new one
                     end = bs
                     if w[1] == 1:
-                        sys.stderr.write("failed to remove %s from manifest" % f)
+                        sys.stderr.write("failed to remove %s from manifest\n"
+                                         % f)
                         sys.exit(1)
                 else:
                     # item is found, replace/delete the existing line
@@ -231,7 +232,7 @@
 
         text = "".join(self.addlist)
         if cachedelta and mdiff.patch(self.listcache[0], cachedelta) != text:
-            sys.stderr.write("manifest delta failure")
+            sys.stderr.write("manifest delta failure\n")
             sys.exit(1)
         n = self.addrevision(text, transaction, link, p1, p2, cachedelta)
         self.mapcache = (n, map, flags)