mercurial/revset.py
branchstable
changeset 16006 39e60576ac98
parent 15966 610c4434973b
child 16007 f06c53ca59a9
--- a/mercurial/revset.py	Fri Jan 27 12:52:13 2012 -0200
+++ b/mercurial/revset.py	Fri Jan 27 22:29:58 2012 +0900
@@ -775,8 +775,8 @@
     n = other.lookup(q)
     if n in repo:
         r = repo[n].rev()
-    if r in subset:
-        return [r]
+        if r in subset:
+            return [r]
     return []
 
 def removes(repo, subset, x):