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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:06:19 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521180619-5qoo0470asgdnljt
Fix more tests (all?)

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
class LaunchpadService(object):
80
80
    """A service to talk to Launchpad via XMLRPC.
81
81
 
82
 
    See http://wiki.bazaar.canonical.com/Specs/LaunchpadRpc for the methods we can call.
 
82
    See http://wiki.bazaar.canonical.com/Specs/LaunchpadRpc for the methods we
 
83
    can call.
83
84
    """
84
85
 
85
86
    LAUNCHPAD_DOMAINS = {
285
286
 
286
287
 
287
288
class BranchRegistrationRequest(BaseRequest):
288
 
    """Request to tell Launchpad about a bzr branch."""
 
289
    """Request to tell Launchpad about a brz branch."""
289
290
 
290
291
    _methodname = 'register_branch'
291
292
 
326
327
 
327
328
 
328
329
class BranchBugLinkRequest(BaseRequest):
329
 
    """Request to link a bzr branch in Launchpad to a bug."""
 
330
    """Request to link a brz branch in Launchpad to a bug."""
330
331
 
331
332
    _methodname = 'link_branch_to_bug'
332
333