From 8ab0b99bee0688202dbb7e9ce36f82bfc4786a93 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 9 May 2015 13:42:30 -0400 Subject: [PATCH] fix pasted whitespace --- tools/cstyle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cstyle.py b/tools/cstyle.py index f78c089724..96c58da284 100644 --- a/tools/cstyle.py +++ b/tools/cstyle.py @@ -112,7 +112,7 @@ class CStyleChecker: self.indent_re = re.compile ("^\s*") self.last_line_indent = "" self.last_line_indent_curly = False - self.re_checks = \ + self.re_checks = \ [ ( re.compile ("^ "), "leading space as indentation instead of tab - use tabs to indent, spaces to align" ) , ( re.compile ("{[^\s]"), "missing space after open brace" ) , ( re.compile ("[^\s]}"), "missing space before close brace" )