comparison hg @ 123:b93cc016eec9

hg history: don't print file list without -v switch
author mpm@selenic.com
date Fri, 20 May 2005 17:46:47 -0800
parents 82fd709deb8e
children 0f6c49138f67
comparison
equal deleted inserted replaced
122:82fd709deb8e 123:b93cc016eec9
293 print "manifest: %4d:%s" % (repo.manifest.rev(changes[0]), 293 print "manifest: %4d:%s" % (repo.manifest.rev(changes[0]),
294 hg.hex(changes[0])) 294 hg.hex(changes[0]))
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
302 elif cmd == "tip": 302 elif cmd == "tip":
303 n = repo.changelog.tip() 303 n = repo.changelog.tip()