diff mercurial/commands.py @ 696:b266e92bcd0b

Removed extra newline in hg log when not using the --patch option, fixed tests. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Removed extra newline in hg log when not using the --patch option, fixed tests. manifest hash: 4d83d4af68581affe4cd2dacf840ec78bf18311e -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC1jJdW7P1GVgWeRoRAkoIAJ4kI8WFisp8fJTMsUCddLwK0O1mHQCgj+fx XDIXrDpUULYSSck3eD4QHY4= =jKKB -----END PGP SIGNATURE-----
author Thomas Arendsen Hein <thomas@intevation.de>
date Thu, 14 Jul 2005 10:37:33 +0100
parents 4315db147f00
children cb1be2327220
line wrap: on
line diff
--- a/mercurial/commands.py	Thu Jul 14 08:57:54 2005 +0100
+++ b/mercurial/commands.py	Thu Jul 14 10:37:33 2005 +0100
@@ -712,8 +712,7 @@
             changenode = repo.changelog.node(i)
             prev, other = repo.changelog.parents(changenode)
             dodiff(sys.stdout, ui, repo, files, prev, changenode)
-            ui.write("\n")
-        ui.write("\n")
+            ui.write("\n\n")
 
 def manifest(ui, repo, rev = []):
     """output the latest or given revision of the project manifest"""