revset: remove doubled space
authorAugie Fackler <augie@google.com>
Fri, 07 Oct 2016 08:03:30 -0400
changeset 30055 7bf15e7eab77
parent 30054 8b89521a69ba
child 30056 3eb4df6d15f8
revset: remove doubled space
mercurial/revset.py
--- a/mercurial/revset.py	Fri Oct 07 08:58:23 2016 -0400
+++ b/mercurial/revset.py	Fri Oct 07 08:03:30 2016 -0400
@@ -177,7 +177,7 @@
                       if c.isalnum() or c in '._@' or ord(c) > 127)
 
 # default set of valid characters for non-initial letters of symbols
-_symletters = set(c for c in  [chr(i) for i in xrange(256)]
+_symletters = set(c for c in [chr(i) for i in xrange(256)]
                   if c.isalnum() or c in '-._/@' or ord(c) > 127)
 
 def tokenize(program, lookup=None, syminitletters=None, symletters=None):