[Python-checkins] CVS: distutils/distutils/command install.py,1.44,1.45

Greg Ward python-dev@python.org
Fri, 15 Sep 2000 18:59:10 -0700


Update of /cvsroot/python/distutils/distutils/command
In directory slayer.i.sourceforge.net:/tmp/cvs-serv6525/distutils/command

Modified Files:
	install.py 
Log Message:
Typo fix.

Index: install.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/install.py,v
retrieving revision 1.44
retrieving revision 1.45
diff -C2 -r1.44 -r1.45
*** install.py	2000/09/15 01:20:10	1.44
--- install.py	2000/09/16 01:59:06	1.45
***************
*** 227,231 ****
  
          py_version = (string.split(sys.version))[0]
!         prefix = get_config_vars('prefix', 'exec_prefix')
          self.config_vars = {'dist_name': self.distribution.get_name(),
                              'dist_version': self.distribution.get_version(),
--- 227,231 ----
  
          py_version = (string.split(sys.version))[0]
!         (prefix, exec_prefix) = get_config_vars('prefix', 'exec_prefix')
          self.config_vars = {'dist_name': self.distribution.get_name(),
                              'dist_version': self.distribution.get_version(),