summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/bdist_rpm.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-08-10 18:50:11 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-08-10 18:50:11 (GMT)
commitdb988b1ed357690f67da827442c56d209bc0ecea (patch)
tree183074b56d25b7079b21dc9a6753c97ff84c141b /Lib/distutils/command/bdist_rpm.py
parentfa7dc57d6c9023a5028aacb802438527ab2cface (diff)
downloadcpython-db988b1ed357690f67da827442c56d209bc0ecea.zip
cpython-db988b1ed357690f67da827442c56d209bc0ecea.tar.gz
cpython-db988b1ed357690f67da827442c56d209bc0ecea.tar.bz2
Use .get_license()
Diffstat (limited to 'Lib/distutils/command/bdist_rpm.py')
-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 4659494..92de935 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}', ])