author | Pierre-Yves David <pierre-yves.david@fb.com> |
Thu, 11 Jun 2015 15:36:03 -0700 | |
changeset 25551 | c1d163ce7394 |
parent 25550 | 3e9049876ace |
child 25552 | 4644e991a12a |
--- a/mercurial/revset.py Thu Jun 11 14:27:52 2015 -0700 +++ b/mercurial/revset.py Thu Jun 11 15:36:03 2015 -0700 @@ -1136,8 +1136,8 @@ 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)