Extract matching_tags() in check-templates.

(imported from commit bf54e656ba5f924298270c8e76b60faf78689099)
This commit is contained in:
Steve Howell 2014-02-27 10:53:15 -05:00 committed by Jessica McKellar
parent 7e49396fc5
commit f22665e710
1 changed files with 4 additions and 1 deletions

View File

@ -29,7 +29,7 @@ def validate(fn, check_indent=True):
old_matcher = state.matcher
def f(end_tag):
problem = None
if start_tag != end_tag[2:-1]:
if not matching_tags(start_tag, end_tag):
problem = 'Mismatched tag.'
elif check_indent and state.line > start_line + 1 and state.col != start_col:
problem = 'Bad indentation.'
@ -92,6 +92,9 @@ def get_html_tag(text, i):
s = text[i:end+1]
return s
def matching_tags(start_tag, end_tag):
return start_tag == end_tag[2:-1]
def check_our_files():
git_files = map(str.strip, subprocess.check_output(['git', 'ls-files']).split('\n'))