Fix typos
All checks were successful
ci/woodpecker/push/tests Pipeline was successful

This commit is contained in:
Ivan Schaller 2022-06-26 22:14:19 +02:00
parent b4d636a845
commit fa2f54f343
2 changed files with 6 additions and 5 deletions

View file

@ -103,7 +103,9 @@ options:
--format FORMAT Archive format to create. An empty string means dont archive the folder. Defaults to 'cbz'
--forcevol Force naming of volumes. For mangas where chapters reset each volume
--wait WAIT Time to wait for each picture to download in seconds(float). Defaults 0.5
--verbose Verbose logging. Defaults to false
--lean Lean logging. Minimal log output. Defaults to false
--verbose Verbose logging. More log output. Defaults to false
--debug Debug logging. Most log output. Defaults to false
```
### Downloads file-structure

View file

@ -1,5 +1,4 @@
import argparse
import subprocess
import sys
from pathlib import Path
@ -182,7 +181,7 @@ def get_args():
"--lean",
dest="verbosity",
required=False,
help="Lean logging. Defaults to false",
help="Lean logging. Minimal log output. Defaults to false",
action="store_const",
const=1,
default=0,
@ -191,7 +190,7 @@ def get_args():
"--verbose",
dest="verbosity",
required=False,
help="Verbose logging. Defaults to false",
help="Verbose logging. More log output. Defaults to false",
action="store_const",
const=2,
default=0,
@ -200,7 +199,7 @@ def get_args():
"--debug",
dest="verbosity",
required=False,
help="Lean logging. Defaults to false",
help="Debug logging. Most log output. Defaults to false",
action="store_const",
const=3,
default=0,