diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-08-10 18:50:11 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-08-10 18:50:11 (GMT) |
commit | db988b1ed357690f67da827442c56d209bc0ecea (patch) | |
tree | 183074b56d25b7079b21dc9a6753c97ff84c141b /Lib/distutils/command | |
parent | fa7dc57d6c9023a5028aacb802438527ab2cface (diff) | |
download | cpython-db988b1ed357690f67da827442c56d209bc0ecea.zip cpython-db988b1ed357690f67da827442c56d209bc0ecea.tar.gz cpython-db988b1ed357690f67da827442c56d209bc0ecea.tar.bz2 |
Use .get_license()
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/bdist_rpm.py | 2 |
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}', ]) |