style: Fix incorrect references style verifiers
authorAndreas Sandberg <andreas.sandberg@arm.com>
Fri, 1 Jul 2016 14:35:52 +0000 (15:35 +0100)
committerAndreas Sandberg <andreas.sandberg@arm.com>
Fri, 1 Jul 2016 14:35:52 +0000 (15:35 +0100)
The style checker for spacing around control statements (ControlSpace)
and the whitespace checker (Whitespace) didn't refer to some of their
configuration variables correctly. This changeset fixes those issues.

Reported-by: Jason Lowe-Power <power.jg@gmail.com>
--HG--
extra : amend_source : 05d82d27d4c42aacd78b514d3ca35ca5744164bb

util/style/verifiers.py

index b798f555334431cbf650d8d284414dffb9f7bd77..8a02db1a15baec93ffb7b5d8bd80a55791c6c59b 100644 (file)
@@ -272,7 +272,8 @@ class Whitespace(LineVerifier):
                 if c == ' ':
                     newline += ' '
                 elif c == '\t':
-                    newline += ' ' * (tabsize - len(newline) % tabsize)
+                    newline += ' ' * (style.tabsize - \
+                                      len(newline) % style.tabsize)
                 else:
                     newline += line[i:]
                     break
@@ -349,7 +350,7 @@ class ControlSpace(LineVerifier):
         return not (match and match.group(2) != " ")
 
     def fix_line(self, line, **kwargs):
-        new_line = _any_control.sub(r'\1 (', line)
+        new_line = ControlSpace._any_control.sub(r'\1 (', line)
         return new_line