summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-09-16 01:59:06 (GMT)
committerGreg Ward <gward@python.net>2000-09-16 01:59:06 (GMT)
commite918b6fdb52bcb904b63da1d14256d76ae48ede6 (patch)
tree47a43093c75b1f94c58f3b3222d0e0c6e783bea7 /Lib/distutils
parent42900941b8699be5119e2eb1f0bebd5f21222801 (diff)
downloadcpython-e918b6fdb52bcb904b63da1d14256d76ae48ede6.zip
cpython-e918b6fdb52bcb904b63da1d14256d76ae48ede6.tar.gz
cpython-e918b6fdb52bcb904b63da1d14256d76ae48ede6.tar.bz2
Typo fix.
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/command/install.py2
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(),