changeset 1010:f0ebc7113429

revsets: fix nativerevs fallback
author Matt Mackall <mpm@selenic.com>
date Fri, 10 May 2013 18:52:28 -0500
parents f0bde4bf1f78
children cc774e975aed
files hgsubversion/util.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/util.py
+++ b/hgsubversion/util.py
@@ -343,7 +343,7 @@ revsets = {
 def revset_stringset(orig, repo, subset, x):
     if x.startswith('r') and x[1:].isdigit():
         return revset_svnrev(repo, subset, ('string', x[1:]))
-    return orig
+    return orig(repo, subset, x)
 
 def getfilestoresize(ui):
     """Return the replay or stupid file memory store size in megabytes or -1"""