##// END OF EJS Templates
hg history: don't print file list without -v switch
mpm@selenic.com -
r123:b93cc016 default
parent child Browse files
Show More
@@ -295,7 +295,7 b' elif cmd == "history":'
295 print "user:", changes[1]
295 print "user:", changes[1]
296 print "date:", time.asctime(
296 print "date:", time.asctime(
297 time.localtime(float(changes[2].split(' ')[0])))
297 time.localtime(float(changes[2].split(' ')[0])))
298 print "files:", " ".join(changes[3])
298 if ui.verbose: print "files:", " ".join(changes[3])
299 print "description:"
299 print "description:"
300 print changes[4]
300 print changes[4]
301
301
General Comments 0
You need to be logged in to leave comments. Login now