Update error message for missing commands

This commit is contained in:
ines 2017-03-26 15:40:02 +02:00
parent 7f95023fc0
commit b297fab062

View File

@ -109,7 +109,8 @@ class CLI(object):
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__':