diff options
author | Jeremy Kloth <jeremy.kloth@gmail.com> | 2011-09-13 14:26:25 (GMT) |
---|---|---|
committer | Jeremy Kloth <jeremy.kloth@gmail.com> | 2011-09-13 14:26:25 (GMT) |
commit | 3ac4f59a82ad7caec46d35293fe974013cfe5925 (patch) | |
tree | b1b8ba2970680a5aaebb2b83fe032f2e7d46cae2 /Lib | |
parent | e012c02a5cd9efc81788948d0b2e501fa351bef6 (diff) | |
download | cpython-3ac4f59a82ad7caec46d35293fe974013cfe5925.zip cpython-3ac4f59a82ad7caec46d35293fe974013cfe5925.tar.gz cpython-3ac4f59a82ad7caec46d35293fe974013cfe5925.tar.bz2 |
The value is the dotted module name to the command class.
Diffstat (limited to 'Lib')
-rw-r--r-- | 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 index 8f8c08c..cd34fc8 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) |