summaryrefslogtreecommitdiff
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-05-21 20:34:38 +0000
committerAndrew M. Kuchling <amk@amk.ca>2001-05-21 20:34:38 +0000
commit4d6ea208ccc7e96b6a889ce8478894844405727d (patch)
treeb2cffdf9c3c3cccf71d5cf0c658ea20a9fcce6b4 /Lib/distutils/command
parent94f57006e39af82e7201b71c2ff41d2b45a44e30 (diff)
downloadcpython-4d6ea208ccc7e96b6a889ce8478894844405727d.tar.gz
Fix bug #418369: typo in bdist_rpm
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/bdist_rpm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py
index f421590488..4659494533 100644
--- a/Lib/distutils/command/bdist_rpm.py
+++ b/Lib/distutils/command/bdist_rpm.py
@@ -189,7 +189,7 @@ class bdist_rpm (Command):
if type(self.doc_files) is ListType:
for readme in ('README', 'README.txt'):
if os.path.exists(readme) and readme not in self.doc_files:
- self.doc.append(readme)
+ self.doc_files.append(readme)
self.ensure_string('release', "1")
self.ensure_string('serial') # should it be an int?