/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 __init__.py

  • Committer: Jeff Licquia
  • Date: 2008-04-03 03:21:34 UTC
  • mto: (0.54.69 automated)
  • mto: This revision was merged to the branch mainline in revision 6630.
  • Revision ID: jeff@licquia.org-20080403032134-uonvr2ar3a89tfee
Report revision numbers on each bisection.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
    def show_rev_log(self, out = sys.stdout):
70
70
        "Write the current revision's log entry to a file."
71
71
        rev = self._bzrbranch.repository.get_revision(self._revid)
72
 
        out.write("On revision ?? (%s):\n%s\n" % (rev.revision_id,
 
72
        revno = self._bzrbranch.revision_id_to_revno(rev.revision_id)
 
73
        out.write("On revision %d (%s):\n%s\n" % (revno, rev.revision_id,
73
74
                                                  rev.message))
74
75
 
75
76
    def switch(self, revid):