~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Martin Pool
  • Date: 2006-03-16 17:02:13 UTC
  • mto: (1668.1.8 bzr-0.8.mbp)
  • mto: This revision was merged to the branch mainline in revision 1710.
  • Revision ID: mbp@sourcefrog.net-20060316170213-9259b421a5f928ae
Start making provision to test using a mock xmlrpc transport.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
            i = branch_url.rfind('/')
54
54
            return branch_url[i+1:]
55
55
        branch_id = _find_default_branch_id(branch_url)
56
 
        BranchRegistrationRequest(branch_url, branch_id)
 
56
        rego = BranchRegistrationRequest(branch_url, branch_id)
 
57
        rego.submit()
57
58
 
58
59
register_command(cmd_register_branch)
59
60