From: Jeremy Kloth Date: Tue, 13 Sep 2011 14:26:25 +0000 (-0600) Subject: The value is the dotted module name to the command class. X-Git-Tag: v3.3.0a1~1537 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ac4f59a82ad7caec46d35293fe974013cfe5925;p=thirdparty%2FPython%2Fcpython.git The value is the dotted module name to the command class. --- diff --git a/Lib/packaging/command/__init__.py b/Lib/packaging/command/__init__.py index 8f8c08c553c7..cd34fc8d5b24 100644 --- a/Lib/packaging/command/__init__.py +++ b/Lib/packaging/command/__init__.py @@ -33,7 +33,7 @@ _COMMANDS = { # XXX this is crappy if os.name == 'nt': - _COMMANDS['bdist_msi'] = 'packaging.command.bdist_msi' + _COMMANDS['bdist_msi'] = 'packaging.command.bdist_msi.bdist_msi' # XXX use OrderedDict to preserve the grouping (build-related, install-related, # distribution-related)