Mercurial > public > mercurial-scm > hg-stable
diff mercurial/fileset.py @ 14513:85fe676c27e9
fileset: fix long line
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 02 Jun 2011 11:27:40 -0500 |
parents | 30506b894359 |
children | 68d814a3cefd |
line wrap: on
line diff
--- a/mercurial/fileset.py Thu Jun 02 11:17:02 2011 -0500 +++ b/mercurial/fileset.py Thu Jun 02 11:27:40 2011 -0500 @@ -56,7 +56,8 @@ pos += 1 else: raise error.ParseError(_("unterminated string"), s) - elif c.isalnum() or c in '.*{}[]?' or ord(c) > 127: # gather up a symbol/keyword + elif c.isalnum() or c in '.*{}[]?' or ord(c) > 127: + # gather up a symbol/keyword s = pos pos += 1 while pos < l: # find end of symbol