equal
deleted
inserted
replaced
407 except (TypeError, LookupError): |
407 except (TypeError, LookupError): |
408 pass |
408 pass |
409 |
409 |
410 # lookup bookmarks through the name interface |
410 # lookup bookmarks through the name interface |
411 try: |
411 try: |
412 self._node = repo.names.singlenode(changeid) |
412 self._node = repo.names.singlenode(repo, changeid) |
413 self._rev = repo.changelog.rev(self._node) |
413 self._rev = repo.changelog.rev(self._node) |
414 return |
414 return |
415 except KeyError: |
415 except KeyError: |
416 pass |
416 pass |
417 |
417 |