Only print help in utils scripts if specifically requested (bugfix)
This commit is contained in:
@@ -67,7 +67,7 @@ the next value can be typed in. Type 'quit' to close the prompt.
|
||||
if __name__ == "__main__":
|
||||
from sys import argv
|
||||
|
||||
if "-h" or "--help" in argv:
|
||||
if "-h" in argv or "--help" in argv:
|
||||
print(help)
|
||||
|
||||
if len(argv) == 1:
|
||||
|
||||
Reference in New Issue
Block a user