mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
render.py: fix typo (#5206)
This commit is contained in:
parent
8f3b999ed7
commit
dc690e38eb
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ def main(loc, colorscheme):
|
|||
if __name__ == "__main__":
|
||||
|
||||
# Parsing the arguments
|
||||
parser = argparse.ArgumentParser(prog="tdlr-pages-to-PDF", description="A Python script to generate a single PDF document with all the `tldr` pages.")
|
||||
parser = argparse.ArgumentParser(prog="tldr-pages-to-pdf", description="A Python script to generate a single PDF document with all the `tldr` pages.")
|
||||
parser.add_argument("dir_path", help = "Path to the 'pages' directory")
|
||||
parser.add_argument("-c", "--color", choices=["solarized-light", "solarized-dark", "basic"], default="basic", help="Color scheme of the PDF")
|
||||
args = parser.parse_args()
|
||||
|
|
Loading…
Add table
Reference in a new issue