# HG changeset patch # User Pierre-Yves David # Date 1434062163 25200 # Node ID c1d163ce73949c7a5e552484af101fdf51ad6cfd # Parent 3e9049876ace53805367507efd266c43b2970b2f revset: gratuitous formating fix in keyword You will be aligned. diff -r 3e9049876ace -r c1d163ce7394 mercurial/revset.py --- 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)