From 34677cc02ec07c4d0e99bc0364a2be10f9d44837 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sim=C3=A3o=20Gomes=20Viana?= Date: Wed, 16 Dec 2020 20:21:20 +0100 Subject: [PATCH] [cli/README] Fix typo in CLI help (manfiests -> manifests) (#157) --- README.md | 2 +- legendary/cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e136b8..a35e47a 100644 --- a/README.md +++ b/README.md @@ -240,7 +240,7 @@ optional arguments: --repair-and-update Update game to the latest version when repairing --ignore-free-space Do not abort if not enough free space is available --disable-delta-manifests - Do not use delta manfiests when updating (may increase + Do not use delta manifests when updating (may increase download size) diff --git a/legendary/cli.py b/legendary/cli.py index 1c7f9b3..2c1dd63 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -1158,7 +1158,7 @@ def main(): install_parser.add_argument('--ignore-free-space', dest='ignore_space', action='store_true', help='Do not abort if not enough free space is available') install_parser.add_argument('--disable-delta-manifests', dest='disable_delta', action='store_true', - help='Do not use delta manfiests when updating (may increase download size)') + help='Do not use delta manifests when updating (may increase download size)') uninstall_parser.add_argument('--keep-files', dest='keep_files', action='store_true', help='Keep files but remove game from Legendary database')