~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-10-12 10:43:30 UTC
  • mfrom: (5487.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20101012104330-tsonnndvloj18v4q
(vila) Add a --no-tree option for init and push (Matthew Gordon)

Show diffs side-by-side

added added

removed removed

Lines of Context:
214
214
        if len(branch_info) != 2:
215
215
            raise errors.UnexpectedSmartServerResponse(response)
216
216
        branch_ref, branch_name = branch_info
217
 
        format = bzrdir.network_format_registry.get(control_name)
 
217
        format = controldir.network_format_registry.get(control_name)
218
218
        if repo_name:
219
219
            format.repository_format = repository.network_format_registry.get(
220
220
                repo_name)
271
271
        self._real_bzrdir.destroy_branch(name=name)
272
272
        self._next_open_branch_result = None
273
273
 
274
 
    def create_workingtree(self, revision_id=None, from_branch=None):
 
274
    def create_workingtree(self, revision_id=None, from_branch=None,
 
275
        accelerator_tree=None, hardlink=False):
275
276
        raise errors.NotLocalUrl(self.transport.base)
276
277
 
277
278
    def find_branch_format(self, name=None):