Fix spelling error.

This commit is contained in:
manfromhuh 2022-07-19 15:50:52 -04:00
parent 18e986cf77
commit c15ffbbc9a

View File

@ -7,7 +7,7 @@ import sys
from urllib.parse import *
version = "2022.07.19"
cmd_args = argparse.ArgumentParser(description='Set urlsafe stirngs back to regularly formatted URLs.')
cmd_args = argparse.ArgumentParser(description='Set urlsafe strings back to regularly formatted URLs.')
cmd_args.add_argument('--version', '-v', dest='print_version', action='store_true',
help='Print the current version number.')
cmd_args.add_argument('safe_string', type=str, nargs='?', default=" ", help="The string to convert from urlsafe to a URL.");