summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Kloth <jeremy.kloth@gmail.com>2011-09-13 08:26:25 -0600
committerJeremy Kloth <jeremy.kloth@gmail.com>2011-09-13 08:26:25 -0600
commit3ac4f59a82ad7caec46d35293fe974013cfe5925 (patch)
treeb1b8ba2970680a5aaebb2b83fe032f2e7d46cae2
parente012c02a5cd9efc81788948d0b2e501fa351bef6 (diff)
downloadcpython-git-3ac4f59a82ad7caec46d35293fe974013cfe5925.tar.gz
The value is the dotted module name to the command class.
-rw-r--r--Lib/packaging/command/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/packaging/command/__init__.py b/Lib/packaging/command/__init__.py
index 8f8c08c553..cd34fc8d5b 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)