fix -[no-]- display in arguments

This commit is contained in:
strangeqargo
2016-05-14 14:33:28 +03:00
parent a5421e8c34
commit 897d581eec
+1 -1
View File
@@ -83,7 +83,7 @@ def help():
for arg in list(optionalArgs.keys()):
if arg == '-help':
continue
argString = argString + ' [-[no-]'+arg+'] ' + optionalArgs[arg] + '\n'
argString = argString + ' [-[no]'+arg+'] ' + optionalArgs[arg] + '\n'
print('Usage: ddl2cpp [-help] ' + argString + ' <path to ddl> <path to target (without extension, e.g. /tmp/MyTable)> <namespace>')
sys.exit(0)