mercurial/localrepo.py
branchstable
changeset 37797 43221a57e22f
parent 37717 0664be4f0c1f
child 37810 856f381ad74b
equal deleted inserted replaced
37796:968ac00c4017 37797:43221a57e22f
   848         error.LookupError is raised if an ambiguous node specified.
   848         error.LookupError is raised if an ambiguous node specified.
   849         """
   849         """
   850         try:
   850         try:
   851             self[changeid]
   851             self[changeid]
   852             return True
   852             return True
   853         except (error.RepoLookupError, error.FilteredIndexError,
   853         except error.RepoLookupError:
   854                 error.FilteredLookupError):
       
   855             return False
   854             return False
   856 
   855 
   857     def __nonzero__(self):
   856     def __nonzero__(self):
   858         return True
   857         return True
   859 
   858