Added missing newline after two error messages.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Added missing newline after two error messages.
manifest hash:
c730cdf92c66ee5b44a4cd9b67f72deb844e4010
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFC2B0mW7P1GVgWeRoRAjXJAJ48fbg6jXN65pBPGW/YmWn9OtKakACgjnr9
DPySaeLr3/bU7KhFdZPI7/4=
=Lvsx
-----END PGP SIGNATURE-----
--- 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)