0 argument bugfix
This commit is contained in:
parent
41422cce40
commit
ddc5e0c72f
|
@ -70,6 +70,8 @@ class Args(object):
|
||||||
"""
|
"""
|
||||||
Checks the arguments
|
Checks the arguments
|
||||||
"""
|
"""
|
||||||
|
if len(self.__arguments) == 0:
|
||||||
|
raise TypeError(lang.errors["usage"])
|
||||||
if len(self.__arguments) != 2 and self.__arguments[0] not in Arg.HELP.value:
|
if len(self.__arguments) != 2 and self.__arguments[0] not in Arg.HELP.value:
|
||||||
raise TypeError(lang.errors["usage"])
|
raise TypeError(lang.errors["usage"])
|
||||||
if self.__arguments[0] in Arg.HELP.value:
|
if self.__arguments[0] in Arg.HELP.value:
|
||||||
|
|
Loading…
Reference in New Issue