# HG changeset patch # User Christian Ebert # Date 1319195247 -3600 # Node ID 0890842c41d1b3d42e307f43a42223c6f91baefc # Parent 19368c54a77429c216bcab8a3a5eed466f408230 keyword: correct grammar in iskwfile docstring diff -r 19368c54a774 -r 0890842c41d1 hgext/keyword.py --- 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):