Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-10-15 17:00:22 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-10-15 17:00:22 (GMT)
commit944df79d93f1d10457cd0828b78004f359e51f3d (patch)
tree8fbfc869e050df7fe472fddb5017b33f7097ac78
parenta00dcaf52a55f8e18865c09f7e5cebe48ee6abdc (diff)
pylintrc: adjust to config format change (disable-msg -> disable)
-rw-r--r--scripts/data/pylintrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/data/pylintrc b/scripts/data/pylintrc
index ee47fc7..4a73565 100644
--- a/scripts/data/pylintrc
+++ b/scripts/data/pylintrc
@@ -51,12 +51,12 @@ load-plugins=
disable-msg-cat=RI
# Enable the message(s) with the given id(s).
-#enable-msg=
+#enable=
# Disable the message(s) with the given id(s).
# FIXME
# W0105 reported on doc string for toplevel module variables
-disable-msg=C0111,C0103,C0302,W0511,W0233,W0231,W0142,W0613,W0703,W0603,W0105
+disable=C0111,C0103,C0302,W0511,W0233,W0231,W0142,W0613,W0703,W0603,W0105
[REPORTS]