##// END OF EJS Templates
Date on its own line in file log
mpm@selenic.com -
r105:6eeb5005 default
parent child Browse files
Show More
@@ -320,8 +320,9 b' elif cmd == "log":'
320 print "parents: %4d:%s" % (i1, h1)
320 print "parents: %4d:%s" % (i1, h1)
321 if i2: print " %4d:%s" % (i2, h2)
321 if i2: print " %4d:%s" % (i2, h2)
322 changes = repo.changelog.read(repo.changelog.node(cr))
322 changes = repo.changelog.read(repo.changelog.node(cr))
323 print "user: %s date: %s" % (changes[1], time.asctime(
323 print "user: %s" % changes[1]
324 time.localtime(float(changes[2].split(' ')[0]))))
324 print "date: %s" % time.asctime(
325 time.localtime(float(changes[2].split(' ')[0]))))
325 print "description:"
326 print "description:"
326 print changes[4]
327 print changes[4]
327 print
328 print
General Comments 0
You need to be logged in to leave comments. Login now