diff options
| author | Thomas Heller <theller@ctypes.org> | 2004-08-17 10:15:07 +0000 |
|---|---|---|
| committer | Thomas Heller <theller@ctypes.org> | 2004-08-17 10:15:07 +0000 |
| commit | 30d00085771bdf2e989678b8d621402bff431583 (patch) | |
| tree | f031d2427849328c3ee858a17e829d2ef12734a5 /Lib | |
| parent | 1f65b472c3b75b34740015a3e28398a5914fc2c9 (diff) | |
| download | cpython-git-30d00085771bdf2e989678b8d621402bff431583.tar.gz | |
The get_installer_filename() method forgot to return the name it
calculates. Spotted by Cort Danger Stratton.
Diffstat (limited to 'Lib')
| -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 20bd61389a..33e15561bb 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): |
