rel-eng/packages/spacewalk-pylint | 2 +-
spacewalk/pylint/spacewalk-pylint.rc | 3 ++-
spacewalk/pylint/spacewalk-pylint.spec | 5 ++++-
3 files changed, 7 insertions(+), 3 deletions(-)
New commits:
commit b57d86c853a0cdfdbe722bccddfaba19ee574579
Author: Miroslav Suchý <msuchy(a)redhat.com>
Date: Fri Aug 24 18:11:27 2012 +0200
Automatic commit of package [spacewalk-pylint] release [0.7-1].
diff --git a/rel-eng/packages/spacewalk-pylint b/rel-eng/packages/spacewalk-pylint
index 09900cb..c3b1ac0 100644
--- a/rel-eng/packages/spacewalk-pylint
+++ b/rel-eng/packages/spacewalk-pylint
@@ -1 +1 @@
-0.6-1 spacewalk/pylint/
+0.7-1 spacewalk/pylint/
diff --git a/spacewalk/pylint/spacewalk-pylint.spec b/spacewalk/pylint/spacewalk-pylint.spec
index 624b7b6..7549b0c 100644
--- a/spacewalk/pylint/spacewalk-pylint.spec
+++ b/spacewalk/pylint/spacewalk-pylint.spec
@@ -1,5 +1,5 @@
Name: spacewalk-pylint
-Version: 0.6
+Version: 0.7
Release: 1%{?dist}
Summary: Pylint configuration for spacewalk python packages
@@ -49,6 +49,9 @@ rm -rf %{buildroot}
%doc LICENSE
%changelog
+* Fri Aug 24 2012 Miroslav Suchý <msuchy(a)redhat.com> 0.7-1
+- put W1201 on list of ignored pylint warnings
+
* Fri Aug 24 2012 Michael Mraka <michael.mraka(a)redhat.com> 0.6-1
- let's silence pylint on our large modules and objects
commit 73f85b6a6f29b8e00d0dba197b0e1c0856483e5f
Author: Miroslav Suchý <msuchy(a)redhat.com>
Date: Fri Aug 24 18:10:55 2012 +0200
put W1201 on list of ignored pylint warnings
diff --git a/spacewalk/pylint/spacewalk-pylint.rc b/spacewalk/pylint/spacewalk-pylint.rc
index 990c8e6..7408778 100644
--- a/spacewalk/pylint/spacewalk-pylint.rc
+++ b/spacewalk/pylint/spacewalk-pylint.rc
@@ -12,7 +12,7 @@ persistent=no
[MESSAGES CONTROL]
# Disable the message(s) with the given id(s).
-disable=I0011,C0302,C0111,R0801,R0902,R0904,R0912,R0913,R0914,R0915,W0142,W0403,W0603
+disable=I0011,C0302,C0111,R0801,R0902,R0904,R0912,R0913,R0914,R0915,W0142,W0403,W0603,W1201
# list of disabled messages:
#I0011: 62: Locally disabling R0201
@@ -27,6 +27,7 @@ disable=I0011,C0302,C0111,R0801,R0902,R0904,R0912,R0913,R0914,R0915,W0142,W0403,
#W0142:228:MPM_Package.write: Used * or ** magic
#W0403: 28: Relative import 'rhnLog', should be 'backend.common.rhnLog'
#W0603: 72:initLOG: Using the global statement
+#W1201: 49,12:KatelloShell.history_file: Specify string format arguments as logging function parameters
[REPORTS]