[Python-checkins] cpython: The value is the dotted module name to the command class.

eric.araujo python-checkins at python.org
Tue Sep 13 16:34:41 CEST 2011


http://hg.python.org/cpython/rev/688c53548f6b
changeset:   72375:688c53548f6b
user:        Jeremy Kloth <jeremy.kloth at gmail.com>
date:        Tue Sep 13 08:26:25 2011 -0600
summary:
  The value is the dotted module name to the command class.

files:
  Lib/packaging/command/__init__.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/packaging/command/__init__.py b/Lib/packaging/command/__init__.py
--- a/Lib/packaging/command/__init__.py
+++ b/Lib/packaging/command/__init__.py
@@ -33,7 +33,7 @@
 
 # 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)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list