[Python-checkins] python/dist/src/Lib/distutils/command bdist_sdux.py,1.4,1.5

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Tue, 04 Jun 2002 14:06:19 -0700


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory usw-pr-cvs1:/tmp/cvs-serv23861

Modified Files:
	bdist_sdux.py 
Log Message:
Replace bogus bare variables with attribute access.


Index: bdist_sdux.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist_sdux.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** bdist_sdux.py	4 Jun 2002 21:00:33 -0000	1.4
--- bdist_sdux.py	4 Jun 2002 21:06:16 -0000	1.5
***************
*** 2,6 ****
  
  Implements the Distutils 'bdist_sdux' command to create HP-UX 
! swinstall depot"""
  
  # Mark Alexander <slash@dotnetslash.net>
--- 2,7 ----
  
  Implements the Distutils 'bdist_sdux' command to create HP-UX 
! swinstall depot.
! """
  
  # Mark Alexander <slash@dotnetslash.net>
***************
*** 266,274 ****
          if self.copyright:
              # XX make a copyright file XXX
!             write_script('copyright')
              psf_file.extend(['    copyright         <copyright'])
          if self.readme:
              # XX make a readme file XXX
!             write_script('readme')
              psf_file.extend(['    readme            <readme'])
  
--- 267,275 ----
          if self.copyright:
              # XX make a copyright file XXX
!             self.write_script('copyright')
              psf_file.extend(['    copyright         <copyright'])
          if self.readme:
              # XX make a readme file XXX
!             self.write_script('readme')
              psf_file.extend(['    readme            <readme'])