/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/bisect.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-06-29 23:46:33 UTC
  • mfrom: (6997.6.10 annotate)
  • Revision ID: breezy.the.bot@gmail.com-20180629234633-viw3mz29w1eygx1y
Add HPSS call for Tree.annotate_iter.

Merged from https://code.launchpad.net/~jelmer/brz/hpss-annotate/+merge/348438

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
 
58
58
    def get_current_revno(self):
59
59
        """Return the current revision number as a tuple."""
60
 
        revdict = self._branch.get_revision_id_to_revno_map()
61
 
        return revdict[self.get_current_revid()]
 
60
        return self._branch.revision_id_to_dotted_revno(self._revid)
62
61
 
63
62
    def get_parent_revids(self):
64
63
        """Return the IDs of the current revision's predecessors."""