Mercurial > hg-stable
changeset 30055:7bf15e7eab77
revset: remove doubled space
author | Augie Fackler <augie@google.com> |
---|---|
date | Fri, 07 Oct 2016 08:03:30 -0400 |
parents | 8b89521a69ba |
children | 3eb4df6d15f8 |
files | mercurial/revset.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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):