Added option -h also for help

This commit is contained in:
zortazert 2022-04-14 12:06:34 -05:00
parent 85cee36e03
commit c6025205e4
2 changed files with 6 additions and 6 deletions

Binary file not shown.

View file

@ -14,12 +14,12 @@ from modules import missing
args = sys.argv args = sys.argv
if "--help" in args: if "--help" in args or "-h" in args:
print("You can use the next commands after check.py") print("""You can use the next commands after check.py
print()
print(" -links | Will skip checking the links") -links | Will skip checking the links
print()
print(" --help | Displays this help menu") --help | Displays this help menu""")
exit() exit()
# TODO: Make a pull-request before starting # TODO: Make a pull-request before starting