Mercurial > hg-stable
changeset 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 |
files | hg |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hg Fri May 20 17:45:03 2005 -0800 +++ b/hg Fri May 20 17:46:47 2005 -0800 @@ -295,7 +295,7 @@ print "user:", changes[1] print "date:", time.asctime( time.localtime(float(changes[2].split(' ')[0]))) - print "files:", " ".join(changes[3]) + if ui.verbose: print "files:", " ".join(changes[3]) print "description:" print changes[4]