only_flags in example

This commit is contained in:
Kenneth Reitz
2011-03-20 15:31:15 -04:00
parent 59b9c72d6d
commit 81294725e9
+1 -1
View File
@@ -11,7 +11,7 @@ from clint.textui import puts, colored, indent
with indent(4, quote='>>>'):
puts(colored.red('Aruments passed in: ') + str(args.all))
puts(colored.red('Flags detected: ') + str(args.all_without('py')))
puts(colored.red('Flags detected: ') + str(args.only_flags))
puts(colored.red('Files detected: ') + str(args.files))
puts(colored.red('Grouped Arguments: ') + str(dict(args.grouped)))