mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
minor sytax fixes
This commit is contained in:
@ -225,7 +225,7 @@ def magic():
|
||||
pass
|
||||
|
||||
# second pass for one word commands: e.g. 'ls'
|
||||
elif args_given[0] in parser['magic_commands']
|
||||
elif args_given[0] in parser['magic_commands']:
|
||||
try:
|
||||
found_parser = parser['argument']
|
||||
break
|
||||
@ -263,7 +263,7 @@ def main():
|
||||
debug = 'd' in options
|
||||
pretty = 'p' in options
|
||||
quiet = 'q' in options
|
||||
raw = 'r' in raw
|
||||
raw = 'r' in options
|
||||
|
||||
if 'a' in options:
|
||||
json_out(about_jc(), pretty=pretty)
|
||||
|
Reference in New Issue
Block a user