899
899
def _has_same_fallbacks(self, other_repo):
900
900
"""Returns true if the repositories have the same fallbacks."""
901
901
# XXX: copied from Repository; it should be unified into a base class
903
903
my_fb = self._fallback_repositories
904
904
other_fb = other_repo._fallback_repositories
905
905
if len(my_fb) != len(other_fb):