summaryrefslogtreecommitdiff
path: root/Lib/distutils
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-08-10 18:50:11 +0000
committerAndrew M. Kuchling <amk@amk.ca>2001-08-10 18:50:11 +0000
commit65ee53c4943f0df57fdd325969d26cef717a0d86 (patch)
tree09d847b894719c452ba21b4bfe7f1d4461647c76 /Lib/distutils
parentc8cece53c96efbb6d9eae777d5922754a9094fd5 (diff)
downloadcpython-65ee53c4943f0df57fdd325969d26cef717a0d86.tar.gz
Use .get_license()
Diffstat (limited to 'Lib/distutils')
-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 4659494533..92de935825 100644
--- a/Lib/distutils/command/bdist_rpm.py
+++ b/Lib/distutils/command/bdist_rpm.py
@@ -347,7 +347,7 @@ class bdist_rpm (Command):
spec_file.append('Source0: %{name}-%{version}.tar.gz')
spec_file.extend([
- 'Copyright: ' + self.distribution.get_licence(),
+ 'Copyright: ' + self.distribution.get_license(),
'Group: ' + self.group,
'BuildRoot: %{_tmppath}/%{name}-buildroot',
'Prefix: %{_prefix}', ])