diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-04 21:06:16 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-04 21:06:16 (GMT) |
commit | 6b3996b2b93d134ca9528a3d6a7f4d2071973146 (patch) | |
tree | 4ef6ec1011883e66309e19516868078457811732 | |
parent | 115fdc614fcac8dbdf5547dbcb00e6399d766648 (diff) | |
download | cpython-6b3996b2b93d134ca9528a3d6a7f4d2071973146.zip cpython-6b3996b2b93d134ca9528a3d6a7f4d2071973146.tar.gz cpython-6b3996b2b93d134ca9528a3d6a7f4d2071973146.tar.bz2 |
Replace bogus bare variables with attribute access.
-rw-r--r-- | Lib/distutils/command/bdist_sdux.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/distutils/command/bdist_sdux.py b/Lib/distutils/command/bdist_sdux.py index ee3822e..875f3d8 100644 --- a/Lib/distutils/command/bdist_sdux.py +++ b/Lib/distutils/command/bdist_sdux.py @@ -1,7 +1,8 @@ """distutils.command.bdist_pkgtool Implements the Distutils 'bdist_sdux' command to create HP-UX -swinstall depot""" +swinstall depot. +""" # Mark Alexander <slash@dotnetslash.net> @@ -265,11 +266,11 @@ class bdist_sdux(bdist_packager.bdist_packager): #psf_file.extend([self.long_description]) if self.copyright: # XX make a copyright file XXX - write_script('copyright') + self.write_script('copyright') psf_file.extend([' copyright <copyright']) if self.readme: # XX make a readme file XXX - write_script('readme') + self.write_script('readme') psf_file.extend([' readme <readme']) psf_file.extend([' fileset']) # start fileset |