From e918b6fdb52bcb904b63da1d14256d76ae48ede6 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sat, 16 Sep 2000 01:59:06 +0000 Subject: [PATCH] Typo fix. --- Lib/distutils/command/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 938922a675d..7182857d2cd 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(),