From bb2fea9e05984e47cf0c18b1adb106f3979492c0 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 2 Jan 2025 10:02:14 +0700 Subject: [PATCH] fix 'exe' subcommand: missing argument --- packaging/MSWindows/BUILD.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/MSWindows/BUILD.py b/packaging/MSWindows/BUILD.py index 0c283314d5..5f4fe4a59a 100644 --- a/packaging/MSWindows/BUILD.py +++ b/packaging/MSWindows/BUILD.py @@ -1434,7 +1434,7 @@ def main(argv): elif arg == "zip": create_zip() elif arg == "exe": - create_installer() + create_installer(args) else: raise ValueError(f"unknown argument {arg!r}") else: