Commit 1f9bd1f4 authored by Seblu's avatar Seblu
Browse files

check args for quit command

parent 2d1cb44d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -12,6 +12,8 @@ from cccli.command.command import Command
class Command_quit(Command):
    '''Quit application with respect'''
    def __call__(self, argv):
        if len(argv) != 1:
            raise cmdBadArgument()
        raise SystemExit()