winlin

refine the usage of csr.

@@ -39,10 +39,10 @@ if len(sys.argv) <= 1: @@ -39,10 +39,10 @@ if len(sys.argv) <= 1:
39 print "Usage: python %s <dir> [filters] [except_filters]"%(sys.argv[0]) 39 print "Usage: python %s <dir> [filters] [except_filters]"%(sys.argv[0])
40 print " dir: the dir contains the files to stat" 40 print " dir: the dir contains the files to stat"
41 print " filters: the file filters, default: *.*pp,*.h,*.c,*.cc" 41 print " filters: the file filters, default: *.*pp,*.h,*.c,*.cc"
42 - print " filters: the except file filters, default: utest,doc" 42 + print " except_filters: the except file filters, default: utest,doc"
43 print "Example:" 43 print "Example:"
44 print " python %s src"%(sys.argv[0]) 44 print " python %s src"%(sys.argv[0])
45 - print " python %s src *.*pp,*.cc utest"%(sys.argv[0]) 45 + print " python %s src *.*pp,*.cc utest,doc"%(sys.argv[0])
46 sys.exit(-1) 46 sys.exit(-1)
47 47
48 dir = sys.argv[1] 48 dir = sys.argv[1]