From: Greg Ward Date: Wed, 1 Mar 2000 14:42:07 +0000 (+0000) Subject: Added call to 'ensure_ready()' on the command object in X-Git-Tag: v1.6a1~318 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=611850bbb3adf2f9124f25a29ad9150ee69e62f8;p=thirdparty%2FPython%2Fcpython.git Added call to 'ensure_ready()' on the command object in 'Distribution.find_command_obj()'. --- diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py index a92bff95736b..83a98a84d684 100644 --- a/Lib/distutils/core.py +++ b/Lib/distutils/core.py @@ -506,6 +506,7 @@ class Distribution: cmd_obj = self.command_obj.get (command) if not cmd_obj and create: cmd_obj = self.create_command_obj (command) + cmd_obj.ensure_ready () self.command_obj[command] = cmd_obj return cmd_obj