mirror of
https://github.com/Aroy-Art/Learning-Python.git
synced 2024-12-26 14:06:10 +01:00
Fix: typo in descStr
This commit is contained in:
parent
628105f051
commit
3f02973e63
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ def convertImageToAscii(fileName, cols, scale, moreLevels, invert):
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
||||||
descStr = "This sript converts an image into ASCII art."
|
descStr = "This script converts an image into ASCII art."
|
||||||
parser = argparse.ArgumentParser(description=descStr)
|
parser = argparse.ArgumentParser(description=descStr)
|
||||||
|
|
||||||
parser.add_argument('--file', dest='imgFile', required=True)
|
parser.add_argument('--file', dest='imgFile', required=True)
|
||||||
|
|
Loading…
Reference in a new issue