From 2636c5923cb63fe5544eb0ddda6967b29b3d60a0 Mon Sep 17 00:00:00 2001 From: Ian Burgwin Date: Mon, 8 Feb 2021 20:41:45 -0800 Subject: [PATCH] custominstall: remove "Manually" from ArgumentParser description --- custominstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custominstall.py b/custominstall.py index 620d787..2b9e9f4 100644 --- a/custominstall.py +++ b/custominstall.py @@ -609,7 +609,7 @@ class CustomInstall: if __name__ == "__main__": - parser = ArgumentParser(description='Manually install a CIA to the SD card for a Nintendo 3DS system.') + parser = ArgumentParser(description='Install a CIA to the SD card for a Nintendo 3DS system.') parser.add_argument('cia', help='CIA files', nargs='+') parser.add_argument('-m', '--movable', help='movable.sed file', required=True) parser.add_argument('-b', '--boot9', help='boot9 file')