diff options
author | Greg Ward <gward@python.net> | 2000-09-16 01:59:06 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-09-16 01:59:06 (GMT) |
commit | e918b6fdb52bcb904b63da1d14256d76ae48ede6 (patch) | |
tree | 47a43093c75b1f94c58f3b3222d0e0c6e783bea7 /Lib/distutils | |
parent | 42900941b8699be5119e2eb1f0bebd5f21222801 (diff) | |
download | cpython-e918b6fdb52bcb904b63da1d14256d76ae48ede6.zip cpython-e918b6fdb52bcb904b63da1d14256d76ae48ede6.tar.gz cpython-e918b6fdb52bcb904b63da1d14256d76ae48ede6.tar.bz2 |
Typo fix.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 938922a..7182857 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -226,7 +226,7 @@ class install (Command): # about needing recursive variable expansion (shudder). py_version = (string.split(sys.version))[0] - prefix = get_config_vars('prefix', 'exec_prefix') + (prefix, exec_prefix) = get_config_vars('prefix', 'exec_prefix') self.config_vars = {'dist_name': self.distribution.get_name(), 'dist_version': self.distribution.get_version(), 'dist_fullname': self.distribution.get_fullname(), |