From c68f75492369d3c20226d11efa629f53e9dd0a06 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Tue, 27 Dec 2022 13:59:56 -0500 Subject: [PATCH] remove access to non-existing option --- lib/lepton/Install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lepton/Install.py b/lib/lepton/Install.py index 84ac16b0d0..34e01ad339 100755 --- a/lib/lepton/Install.py +++ b/lib/lepton/Install.py @@ -34,7 +34,7 @@ parser.add_argument("-m", "--machine", args = parser.parse_args() # print help message and exit, if neither build nor path options are given -if not args.machine and not args.extramake: +if not args.machine: parser.print_help() sys.exit(HELP)