# HG changeset patch # User mpm@selenic.com # Date 1116466426 28800 # Node ID 6eeb5005048662bc3619e474bb04555ca100a3a3 # Parent 20b3e7aad499c3ed1b2d1470d121fb80dbc61608 Date on its own line in file log diff --git a/hg b/hg --- a/hg +++ b/hg @@ -320,8 +320,9 @@ elif cmd == "log": print "parents: %4d:%s" % (i1, h1) if i2: print " %4d:%s" % (i2, h2) changes = repo.changelog.read(repo.changelog.node(cr)) - print "user: %s date: %s" % (changes[1], time.asctime( - time.localtime(float(changes[2].split(' ')[0])))) + print "user: %s" % changes[1] + print "date: %s" % time.asctime( + time.localtime(float(changes[2].split(' ')[0])))) print "description:" print changes[4] print