/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 bzrlib/remote.py

  • Committer: John Arbash Meinel
  • Date: 2008-08-14 20:15:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3636.
  • Revision ID: john@arbash-meinel.com-20080814201521-vz11z6uh7b0pcnxg
Thunk over to the real branch's revision_id_to_revno.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1593
1593
    def is_locked(self):
1594
1594
        return self._lock_count >= 1
1595
1595
 
 
1596
    @needs_read_lock
 
1597
    def revision_id_to_revno(self, revision_id):
 
1598
        self._ensure_real()
 
1599
        return self._real_branch.revision_id_to_revno(revision_id)
 
1600
 
1596
1601
    @needs_write_lock
1597
1602
    def set_last_revision_info(self, revno, revision_id):
1598
1603
        revision_id = ensure_null(revision_id)