revset: add missing whitespace
authorKevin Gessner <kevin@kevingessner.com>
Sat, 30 Apr 2011 18:25:45 +0200
changeset 14072 2e4d79dcc0a0
parent 14071 b23a8dd36a21
child 14073 72c84f24b420
revset: add missing whitespace
mercurial/revset.py
--- a/mercurial/revset.py	Sat Apr 30 07:00:13 2011 -0700
+++ b/mercurial/revset.py	Sat Apr 30 18:25:45 2011 +0200
@@ -614,7 +614,7 @@
     """
     try:
         n = int(n[1])
-        if n not in (0,1,2):
+        if n not in (0, 1, 2):
             raise ValueError
     except ValueError:
         raise error.ParseError(_("^ expects a number 0, 1, or 2"))