revset: gratuitous formating fix in keyword

You will be aligned.
This commit is contained in:
Pierre-Yves David 2015-06-11 15:36:03 -07:00
parent eb81242d78
commit b62dbb27c2

View File

@ -1136,8 +1136,8 @@ def keyword(repo, subset, x):
def matches(r):
c = repo[r]
return any(kw in encoding.lower(t) for t in c.files() + [c.user(),
c.description()])
return any(kw in encoding.lower(t)
for t in c.files() + [c.user(), c.description()])
return subset.filter(matches)