changeset 10:9f2626d226ca

change nonverbose option to "-q"
author Dan Stowell <danstowell@users.sourceforge.net>
date Thu, 29 Nov 2012 13:12:29 +0000
parents 7adab9621caa
children f30f1a3f433f
files smacpy.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/smacpy.py	Thu Nov 29 13:12:05 2012 +0000
+++ b/smacpy.py	Thu Nov 29 13:12:29 2012 +0000
@@ -150,9 +150,9 @@
 	parser.add_argument('-t', '--trainpath',  default='wavs', help="Path to the WAV files used for training")
 	parser.add_argument('-T', '--testpath',   default='wavs', help="Path to the WAV files used for testing")
 	parser.add_argument('-c', '--charsplit',  default='_',   help="Character used to split filenames: anything BEFORE this character is the class")
-	parser.add_argument('-V', dest='lessverbose', action='store_true', help="Be less verbose")
+	parser.add_argument('-q', dest='quiet', action='store_true', help="Be less verbose, don't output much text during processing")
 	args = vars(parser.parse_args())
-	verbose = not args['lessverbose']
+	verbose = not args['quiet']
 
 	# Build up lists of the training and testing WAV files:
 	wavsfound = {'trainpath':{}, 'testpath':{}}