2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-25 11:01:09 +00:00

Fix list argument

This commit is contained in:
Jarrod Johnson 2019-07-24 15:37:01 -04:00
parent 2787e1d862
commit 64cc2416d1

View File

@ -50,7 +50,7 @@ try:
downdir = args[2]
elif args[1] == 'delete':
delete = args[2]
else:
elif args[1] != 'list':
argparser.print_help()
sys.exit(1)
except IndexError: