Use .get_license()

This commit is contained in:
Andrew M. Kuchling 2001-08-10 18:50:11 +00:00
parent fa7dc57d6c
commit db988b1ed3
1 changed files with 1 additions and 1 deletions

View File

@ -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}', ])