~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/bzrdir.py

  • Committer: Andrew Bennetts
  • Date: 2010-10-13 00:26:41 UTC
  • mto: This revision was merged to the branch mainline in revision 5498.
  • Revision ID: andrew.bennetts@canonical.com-20101013002641-9tlh9k89mlj1666m
Keep docs-plain working.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
class SmartServerRequestBzrDir(SmartServerRequest):
87
87
 
88
88
    def do(self, path, *args):
89
 
        """Open a BzrDir at path, and return `self.do_bzrdir_request(*args)`."""
 
89
        """Open a BzrDir at path, and return self.do_bzrdir_request(*args)."""
90
90
        try:
91
91
            self._bzrdir = BzrDir.open_from_transport(
92
92
                self.transport_from_client_path(path))
181
181
 
182
182
        :param path: The path to the bzrdir.
183
183
        :param network_name: The network name of the branch type to create.
184
 
        :return: ('ok', branch_format, repo_path, rich_root, tree_ref,
185
 
            external_lookup, repo_format)
 
184
        :return: (ok, network_name)
186
185
        """
187
186
        bzrdir = BzrDir.open_from_transport(
188
187
            self.transport_from_client_path(path))