Commit ecce1452 authored by Greg Ward's avatar Greg Ward

In 'reinitialize_subcommand()', pass 'reinit_subcommands' flag on to the

real implementation in Distribution.
parent f449ea51
......@@ -316,8 +316,9 @@ class Command:
# XXX rename to 'get_reinitialized_command()'? (should do the
# same in dist.py, if so)
def reinitialize_command (self, command):
return self.distribution.reinitialize_command(command)
def reinitialize_command (self, command, reinit_subcommands=0):
return self.distribution.reinitialize_command(
command, reinit_subcommands)
def run_command (self, command):
"""Run some other command: uses the 'run_command()' method of
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment