remove access to non-existing option

This commit is contained in:
Axel Kohlmeyer
2022-12-27 13:59:56 -05:00
parent faa2a9ffeb
commit c68f754923

View File

@ -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)