Make default config Python 3 compatible.
This commit is contained in:
parent
9cd7c836ad
commit
37bafdf91a
@ -21,7 +21,7 @@ setOption("UseDefaultRunlevels", False)
|
||||
setOption("UseEpoch", False)
|
||||
setOption("UseUTF8", True)
|
||||
setOption("UseVersionInChangeLog", True)
|
||||
setOption("ValidSrcPerms", (0664, 0644, ))
|
||||
setOption("ValidSrcPerms", (int("664",8), int("644",8), ))
|
||||
|
||||
setOption("ValidShells", (
|
||||
"<lua>",
|
||||
|
@ -1,6 +1,6 @@
|
||||
Name: rpmlint
|
||||
Version: 1.5
|
||||
Release: 6%{?dist}
|
||||
Release: 7%{?dist}
|
||||
Summary: Tool for checking common errors in RPM packages
|
||||
|
||||
Group: Development/Tools
|
||||
@ -111,6 +111,9 @@ make check
|
||||
|
||||
|
||||
%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
|
||||
- fix unicode naming bug (bz 1036310)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user