mercurial/obsolete.py
changeset 22507 5c00c5298f98
parent 22394 813c6855b97f
child 22612 fdfa40ee75cf
--- a/mercurial/obsolete.py	Sat Sep 27 13:18:10 2014 -0500
+++ b/mercurial/obsolete.py	Tue Sep 23 12:21:38 2014 -0700
@@ -852,7 +852,7 @@
     Such access may compute the set and cache it for future use"""
     repo = repo.unfiltered()
     if not repo.obsstore:
-        return ()
+        return frozenset()
     if name not in repo.obsstore.caches:
         repo.obsstore.caches[name] = cachefuncs[name](repo)
     return repo.obsstore.caches[name]