Bug fix: call helpmsg() if script is called without arguments instead of built-in help() method.

This commit is contained in:
Achim D. Brucker 2017-08-16 08:26:49 +01:00
parent 9e1be377dc
commit b7729150ba
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ def main(argv):
if len(args) > 0:
extid = args[0]
else:
help()
helpmsg()
sys.exit()
if date is not None: