fileset: add missing whitespace around operator stable
authorThomas Arendsen Hein <thomas@intevation.de>
Sun, 19 Jun 2011 11:43:40 +0200
branchstable
changeset 14690 15faf0e66909
parent 14689 25e4d2f35965
child 14691 b1efd75cdafe
fileset: add missing whitespace around operator
mercurial/fileset.py
--- a/mercurial/fileset.py	Sat Jun 18 20:49:07 2011 -0500
+++ b/mercurial/fileset.py	Sun Jun 19 11:43:40 2011 +0200
@@ -305,7 +305,7 @@
     elif expr[0].isdigit or expr[0] == '.':
         a = _sizetoint(expr)
         b = _sizetomax(expr)
-        m = lambda x: x >=a and x <= b
+        m = lambda x: x >= a and x <= b
     else:
         raise error.ParseError(_("couldn't parse size"), expr)