[PATCH 1 of 4 v2] revset: remove doubled space

Augie Fackler raf at durin42.com
Fri Oct 7 15:21:39 UTC 2016


# HG changeset patch
# User Augie Fackler <augie at google.com>
# Date 1475841810 14400
#      Fri Oct 07 08:03:30 2016 -0400
# Node ID 01d8863388b16103916b03b24eff1b0cec995321
# Parent  156a151866dd338a2e9625d52724ef110e417cdd
revset: remove doubled space

diff --git a/mercurial/revset.py b/mercurial/revset.py
--- a/mercurial/revset.py
+++ b/mercurial/revset.py
@@ -177,7 +177,7 @@ keywords = set(['and', 'or', 'not'])
                       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):


More information about the Mercurial-devel mailing list