diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-04 20:26:44 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-04 20:26:44 (GMT) |
commit | a2f9989c1a5451253d1e6e8508af422363c7e113 (patch) | |
tree | 01836feb7f7de4b1cf1ee3e5540931afa7911bbe /Lib/distutils/command/bdist_pkgtool.py | |
parent | a181ec07af8f0ab34d17be777d65935189df5054 (diff) | |
download | cpython-a2f9989c1a5451253d1e6e8508af422363c7e113.zip cpython-a2f9989c1a5451253d1e6e8508af422363c7e113.tar.gz cpython-a2f9989c1a5451253d1e6e8508af422363c7e113.tar.bz2 |
Fix unused local variables caught by pychecker.
Fixes a bug for Solaris pkgtool (bdist_pkgtool) that would have
prevented it from building subpackages.
Diffstat (limited to 'Lib/distutils/command/bdist_pkgtool.py')
-rw-r--r-- | Lib/distutils/command/bdist_pkgtool.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/bdist_pkgtool.py b/Lib/distutils/command/bdist_pkgtool.py index 9d6e7dc..3a48d26 100644 --- a/Lib/distutils/command/bdist_pkgtool.py +++ b/Lib/distutils/command/bdist_pkgtool.py @@ -208,7 +208,7 @@ class bdist_pkgtool (bdist_packager.bdist_packager): else: pkg_dir = self.pkg_dir - install = self.reinitialize_command('install', reinit_subcommands=1) + self.reinitialize_command('install', reinit_subcommands=1) # build package log.info('Building package') self.run_command('build') @@ -275,7 +275,7 @@ class bdist_pkgtool (bdist_packager.bdist_packager): if self.subpackages: self.subpackages=string.split(self.subpackages,",") for pkg in self.subpackages: - self.make_package(subpackage) + self.make_package(pkg) else: self.make_package() # run() |