Index: gcl.py |
diff --git a/gcl.py b/gcl.py |
index 49e4e70f67cc3757f2d2b22769b62b3b8b3f8574..b3374d9d642d8c0a4490e65b85669491e3862c97 100755 |
--- a/gcl.py |
+++ b/gcl.py |
@@ -1129,6 +1129,8 @@ def CMDlint(change_info, args): |
if not black_list: |
black_list = DEFAULT_LINT_IGNORE_REGEX |
black_regex = re.compile(black_list) |
+ # Access to a protected member _XX of a client class |
+ # pylint: disable=W0212 |
for filename in filenames: |
if white_regex.match(filename): |
if black_regex.match(filename): |