Nit fix for git_footers.

TBR=machenbach@chromium.org
Bug: 717504
Change-Id: Ifa71fa4cac0b57ed11ba5e7eb93516b23b72a496
Reviewed-on: https://chromium-review.googlesource.com/502809
Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org>
This commit is contained in:
Andrii Shyshkalov
2017-05-11 14:35:56 +02:00
parent 04b51d6de0
commit 1a91c6080a

View File

@@ -49,7 +49,7 @@ def matches_footer_key(line, key):
""" """
r = parse_footer(line) r = parse_footer(line)
if r is None: if r is None:
return None return False
return normalize_name(r[0]) == normalize_name(key) return normalize_name(r[0]) == normalize_name(key)