[Python-checkins] CVS: distutils/distutils dist.py,1.21,1.22

Greg Ward python-dev@python.org
Wed, 31 May 2000 18:09:49 -0700


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

Modified Files:
	dist.py 
Log Message:
Oops, 'reinitialize_command()' forgot to return the command object if didn't
need to be reinitialized -- fixed.

Index: dist.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/dist.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** dist.py	2000/05/28 23:53:06	1.21
--- dist.py	2000/06/01 01:09:47	1.22
***************
*** 7,11 ****
  # (extricated from core.py; actually dates back to the beginning)
  
! __revision__ = "$Id: dist.py,v 1.21 2000/05/28 23:53:06 gward Exp $"
  
  import sys, os, string, re
--- 7,11 ----
  # (extricated from core.py; actually dates back to the beginning)
  
! __revision__ = "$Id: dist.py,v 1.22 2000/06/01 01:09:47 gward Exp $"
  
  import sys, os, string, re
***************
*** 712,716 ****
  
          if not command.finalized:
!             return
          command.initialize_options()
          command.finalized = 0
--- 712,716 ----
  
          if not command.finalized:
!             return command
          command.initialize_options()
          command.finalized = 0