changeset 14072:2e4d79dcc0a0

revset: add missing whitespace
author Kevin Gessner <kevin@kevingessner.com>
date Sat, 30 Apr 2011 18:25:45 +0200
parents b23a8dd36a21
children 72c84f24b420
files mercurial/revset.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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"))