Mercurial > public > mercurial-scm > hg-stable
diff hgext/keyword.py @ 15324:0890842c41d1 stable
keyword: correct grammar in iskwfile docstring
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Fri, 21 Oct 2011 12:07:27 +0100 |
parents | 59e8bc22506e |
children | 42630f54e513 |
line wrap: on
line diff
--- a/hgext/keyword.py Thu Oct 20 17:40:25 2011 -0400 +++ b/hgext/keyword.py Fri Oct 21 12:07:27 2011 +0100 @@ -237,7 +237,7 @@ def iskwfile(self, cand, ctx): '''Returns subset of candidates which are configured for keyword - expansion are not symbolic links.''' + expansion but are not symbolic links.''' return [f for f in cand if self.match(f) and not 'l' in ctx.flags(f)] def overwrite(self, ctx, candidates, lookup, expand, rekw=False):