From ce99e5301b8c23e9ba91c1950c794e0d053f5641 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Sun, 17 Oct 2021 15:51:26 +0200 Subject: [PATCH] Smashed bug with argument-parsing --- caliGraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caliGraph.py b/caliGraph.py index 4261344..cc7e2dd 100755 --- a/caliGraph.py +++ b/caliGraph.py @@ -905,7 +905,7 @@ def cliInterface(): parser = argparse.ArgumentParser(description='TODO: Write Description.') parser.add_argument('--keep-priv', action="store_true") - parser.add_argument('--keep-whitepaper', action="store_true") + parser.add_argument('--keep-whitepapers', action="store_true") parser.add_argument('--remove-read', action="store_true") parser.add_argument('--remove-unread', action="store_true") parser.add_argument('--no-web', action="store_true")