Mercurial > hg-stable
changeset 14513:85fe676c27e9
fileset: fix long line
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 02 Jun 2011 11:27:40 -0500 |
parents | 8c8b55733cbd |
children | 175e4b9d8a96 |
files | mercurial/fileset.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
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