in libmozevent/mercurial.py [0:0]
def has_revision(self, revision):
"""
Check if a revision is available on this Mercurial repo
"""
if not revision:
return False
try:
self.repo.identify(revision)
return True
except hglib.error.CommandError:
return False