Oops, 'reinitialize_command()' forgot to return the command object if didn't

need to be reinitialized -- fixed.
This commit is contained in:
Greg Ward 2000-06-01 01:09:47 +00:00
parent 308acf0bfa
commit 282c7a0230
1 changed files with 1 additions and 1 deletions

View File

@ -711,7 +711,7 @@ class Distribution:
command_name = command.get_command_name()
if not command.finalized:
return
return command
command.initialize_options()
command.finalized = 0
self._set_command_options(command)