Mercurial > hg
changeset 25551:c1d163ce7394
revset: gratuitous formating fix in keyword
You will be aligned.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Thu, 11 Jun 2015 15:36:03 -0700 |
parents | 3e9049876ace |
children | 4644e991a12a |
files | mercurial/revset.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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)