mirror of
https://github.com/kennethreitz/clint.git
synced 2026-06-05 06:46:16 +00:00
new not_files support.
This commit is contained in:
@@ -127,7 +127,6 @@ sure you add yourself to AUTHORS_.
|
||||
Roadmap
|
||||
-------
|
||||
- Indent ``\n`` injection
|
||||
- args.not_files support
|
||||
- Unittests
|
||||
- Sphinx Documentation
|
||||
- Python 2.5, 3.1, 3.2 Support
|
||||
|
||||
+2
-1
@@ -11,8 +11,9 @@ 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.only_flags))
|
||||
puts(colored.red('Flags detected: ') + str(args.flags))
|
||||
puts(colored.red('Files detected: ') + str(args.files))
|
||||
puts(colored.red('NOT Files detected: ') + str(args.not_files))
|
||||
puts(colored.red('Grouped Arguments: ') + str(dict(args.grouped)))
|
||||
|
||||
print
|
||||
@@ -10,3 +10,6 @@ python args.py *.py
|
||||
|
||||
echo 'A few non-expanded file arguments:'
|
||||
python args.py '*.py'
|
||||
|
||||
echo 'A few mixed files/flags/arguments:'
|
||||
python args.py '*.py' --test test face book -s ~/.ssh
|
||||
|
||||
Reference in New Issue
Block a user