mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Replace bogus bare variables with attribute access.
This commit is contained in:
parent
115fdc614f
commit
6b3996b2b9
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue