From 5f6b3c63ed521b82f175421b076a85d297b2d2cd Mon Sep 17 00:00:00 2001 From: Andrei Kopats Date: Mon, 18 Dec 2017 17:25:06 +0300 Subject: [PATCH] output parsing: ignore "Using config file..." message --- pylinter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pylinter.py b/pylinter.py index 6f3f23e..a1c7f68 100755 --- a/pylinter.py +++ b/pylinter.py @@ -529,7 +529,8 @@ def process_errors(self, lines, errlines): # instance, trying to disable a messaage id that does not exist if len(errlines) > 1: err = errlines[-2] - if not err.startswith("No config file found"): + if (not err.startswith("No config file found") and + not err.startswith("Using config file")): sublime.error_message("Fatal pylint error:\n%s" % (errlines[-2])) for line in lines: