diff options
author | Thomas Heller <theller@ctypes.org> | 2004-08-17 10:15:07 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2004-08-17 10:15:07 (GMT) |
commit | 30d00085771bdf2e989678b8d621402bff431583 (patch) | |
tree | f031d2427849328c3ee858a17e829d2ef12734a5 /Lib/distutils/command | |
parent | 1f65b472c3b75b34740015a3e28398a5914fc2c9 (diff) | |
download | cpython-30d00085771bdf2e989678b8d621402bff431583.zip cpython-30d00085771bdf2e989678b8d621402bff431583.tar.gz cpython-30d00085771bdf2e989678b8d621402bff431583.tar.bz2 |
The get_installer_filename() method forgot to return the name it
calculates. Spotted by Cort Danger Stratton.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/bdist_wininst.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py index 20bd613..33e1556 100644 --- a/Lib/distutils/command/bdist_wininst.py +++ b/Lib/distutils/command/bdist_wininst.py @@ -283,6 +283,7 @@ class bdist_wininst (Command): else: installer_name = os.path.join(self.dist_dir, "%s.win32.exe" % fullname) + return installer_name # get_installer_filename() def get_exe_bytes (self): |