Skip to content
Snippets Groups Projects
Commit 6e3f53b4 authored by Campbell Barton's avatar Campbell Barton
Browse files

correct typo

parent 78668d5a
Branches
Tags
No related merge requests found
...@@ -1060,7 +1060,7 @@ def quick_check_includes(lines): ...@@ -1060,7 +1060,7 @@ def quick_check_includes(lines):
inc = set() inc = set()
base = os.path.dirname(filepath) base = os.path.dirname(filepath)
match = quick_check_include_level.re_inc_match match = quick_check_includes.re_inc_match
for i, l in enumerate(lines): for i, l in enumerate(lines):
m = match(l) m = match(l)
if m is not None: if m is not None:
...@@ -1080,7 +1080,7 @@ def quick_check_includes(lines): ...@@ -1080,7 +1080,7 @@ def quick_check_includes(lines):
inc.add(l_header) inc.add(l_header)
if len(inc) == len_inc: if len(inc) == len_inc:
warning_lineonly("E171", "duplicate includes %r" % l_header, i + 1) warning_lineonly("E171", "duplicate includes %r" % l_header, i + 1)
quick_check_include_level.re_inc_match = re.compile(r"\s*#\s*include\s+\"([a-zA-Z0-9_\-\.\/]+)\"").match quick_check_includes.re_inc_match = re.compile(r"\s*#\s*include\s+\"([a-zA-Z0-9_\-\.\/]+)\"").match
def quick_check_indentation(lines): def quick_check_indentation(lines):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment