##// END OF EJS Templates
obsolete: ensure that `getrevs` always return a set...
Pierre-Yves David -
r22507:5c00c529 default
parent child Browse files
Show More
@@ -852,7 +852,7 b' def getrevs(repo, name):'
852 852 Such access may compute the set and cache it for future use"""
853 853 repo = repo.unfiltered()
854 854 if not repo.obsstore:
855 return ()
855 return frozenset()
856 856 if name not in repo.obsstore.caches:
857 857 repo.obsstore.caches[name] = cachefuncs[name](repo)
858 858 return repo.obsstore.caches[name]
General Comments 0
You need to be logged in to leave comments. Login now