From 43955c9a023ea7b50b28052112dbdc914c090a27 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Tue, 6 Jun 2000 02:52:36 +0000 Subject: [PATCH] Fix 'reinitialize_command()' so it resets the 'have_run' flag for the command being reinitialized to false. --- Lib/distutils/dist.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index 64f63add57f..44f5c8806ad 100644 --- a/Lib/distutils/dist.py +++ b/Lib/distutils/dist.py @@ -712,6 +712,7 @@ class Distribution: return command command.initialize_options() command.finalized = 0 + self.have_run[command_name] = 0 self._set_command_options(command) return command