Mercurial > hg
changeset 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 | 19368c54a774 |
children | cdf1daa3b83f |
files | hgext/keyword.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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):