/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: Andrew Bennetts
  • Date: 2008-06-19 02:51:12 UTC
  • mto: (3452.2.9 inter-remote-pack)
  • mto: This revision was merged to the branch mainline in revision 3511.
  • Revision ID: andrew.bennetts@canonical.com-20080619025112-wf4jpdp25lqk422y
Rename Branch.set_last_revision_descendant verb to Branch.set_last_revision_ex.  It's a cop out, but at least it's not misleading.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1484
1484
            allow_diverged=False, do_not_overwrite_descendant=True):
1485
1485
        path = self.bzrdir._path_for_remote_call(self._client)
1486
1486
        try:
1487
 
            response = self._client.call('Branch.set_last_revision_descendant',
 
1487
            response = self._client.call('Branch.set_last_revision_ex',
1488
1488
                path, self._lock_token, self._repo_lock_token, revision_id,
1489
1489
                int(allow_diverged), int(do_not_overwrite_descendant))
1490
1490
        except errors.ErrorFromSmartServer, err: