comparison 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
comparison
equal deleted inserted replaced
695:085a8145e151 696:b266e92bcd0b
710 filenode = filelog.node(i) 710 filenode = filelog.node(i)
711 i = filelog.linkrev(filenode) 711 i = filelog.linkrev(filenode)
712 changenode = repo.changelog.node(i) 712 changenode = repo.changelog.node(i)
713 prev, other = repo.changelog.parents(changenode) 713 prev, other = repo.changelog.parents(changenode)
714 dodiff(sys.stdout, ui, repo, files, prev, changenode) 714 dodiff(sys.stdout, ui, repo, files, prev, changenode)
715 ui.write("\n") 715 ui.write("\n\n")
716 ui.write("\n")
717 716
718 def manifest(ui, repo, rev = []): 717 def manifest(ui, repo, rev = []):
719 """output the latest or given revision of the project manifest""" 718 """output the latest or given revision of the project manifest"""
720 n = repo.manifest.tip() 719 n = repo.manifest.tip()
721 if rev: 720 if rev: