/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/plugins/launchpad/lp_registration.py

  • Committer: Alexander Belchenko
  • Date: 2008-02-06 10:07:17 UTC
  • mfrom: (3211 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3230.
  • Revision ID: bialix@ukr.net-20080206100717-wnixj1s8u2fks08r
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
    # NB: this should always end in a slash to avoid xmlrpclib appending
42
42
    # '/RPC2'
43
 
    DEFAULT_SERVICE_URL = 'https://xmlrpc.launchpad.net/bazaar/'
 
43
    # We use edge because:
 
44
    # Beta users get redirected to it
 
45
    # All users can use it
 
46
    # There is a bug in the launchpad side where redirection causes an OOPS.
 
47
    DEFAULT_SERVICE_URL = 'https://xmlrpc.edge.launchpad.net/bazaar/'
44
48
 
45
49
    transport = None
46
50
    registrant_email = None
180
184
                 author_email='',
181
185
                 product_name='',
182
186
                 ):
183
 
        assert branch_url
 
187
        assert branch_url, 'branch_url %r is invalid' % branch_url
184
188
        self.branch_url = branch_url
185
189
        if branch_name:
186
190
            self.branch_name = branch_name