From: Andrew M. Kuchling Date: Fri, 10 Aug 2001 18:50:11 +0000 (+0000) Subject: Use .get_license() X-Git-Tag: v2.2a3~673 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db988b1ed357690f67da827442c56d209bc0ecea;p=thirdparty%2FPython%2Fcpython.git Use .get_license() --- diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py index 465949453378..92de935825a8 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}', ])