fileset: fix long line
authorMatt Mackall <mpm@selenic.com>
Thu, 02 Jun 2011 11:27:40 -0500
changeset 14513 85fe676c27e9
parent 14512 8c8b55733cbd
child 14514 175e4b9d8a96
fileset: fix long line
mercurial/fileset.py
--- 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