Make default config Python 3 compatible.

This commit is contained in:
Ville Skyttä 2014-02-09 14:19:54 +02:00
parent 9cd7c836ad
commit 37bafdf91a
2 changed files with 5 additions and 2 deletions

View File

@ -21,7 +21,7 @@ setOption("UseDefaultRunlevels", False)
setOption("UseEpoch", False) setOption("UseEpoch", False)
setOption("UseUTF8", True) setOption("UseUTF8", True)
setOption("UseVersionInChangeLog", True) setOption("UseVersionInChangeLog", True)
setOption("ValidSrcPerms", (0664, 0644, )) setOption("ValidSrcPerms", (int("664",8), int("644",8), ))
setOption("ValidShells", ( setOption("ValidShells", (
"<lua>", "<lua>",

View File

@ -1,6 +1,6 @@
Name: rpmlint Name: rpmlint
Version: 1.5 Version: 1.5
Release: 6%{?dist} Release: 7%{?dist}
Summary: Tool for checking common errors in RPM packages Summary: Tool for checking common errors in RPM packages
Group: Development/Tools Group: Development/Tools
@ -111,6 +111,9 @@ make check
%changelog %changelog
* Sun Feb 9 2014 Ville Skyttä <ville.skytta@iki.fi> - 1.5-7
- Make default config Python 3 compatible.
* Thu Dec 12 2013 Tom Callaway <spot@fedoraproject.org> - 1.5-6 * Thu Dec 12 2013 Tom Callaway <spot@fedoraproject.org> - 1.5-6
- fix unicode naming bug (bz 1036310) - fix unicode naming bug (bz 1036310)