# HG changeset patch # User Matt Mackall # Date 1368229948 18000 # Node ID f0ebc71134292e2f8fe7bfb124d0ad8a487e6d0b # Parent f0bde4bf1f7819b15c93be059b8d01f21cd8a146 revsets: fix nativerevs fallback diff --git a/hgsubversion/util.py b/hgsubversion/util.py --- 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"""