Update error message for missing commands

This commit is contained in:
ines 2017-03-26 15:40:02 +02:00
parent 7f95023fc0
commit b297fab062
1 changed files with 2 additions and 1 deletions

View File

@ -109,7 +109,8 @@ class CLI(object):
def __missing__(self, name): def __missing__(self, name):
print("\n Command %r does not exist\n" % name) print("\n Command %r does not exist."
"\n Use the --help flag for a list of available commands.\n" % name)
if __name__ == '__main__': if __name__ == '__main__':