/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: Martin Pool
  • Date: 2009-03-03 03:01:49 UTC
  • mfrom: (4070 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4073.
  • Revision ID: mbp@sourcefrog.net-20090303030149-8p8o8hszdtqa7w8f
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
class NotLaunchpadBranch(errors.BzrError):
49
49
 
50
 
    _fmt = "%(url)s is not hosted on Launchpad."
 
50
    _fmt = "%(url)s is not registered on Launchpad."
51
51
 
52
52
    def __init__(self, url):
53
53
        errors.BzrError.__init__(self, url=url)
237
237
 
238
238
class DryRunLaunchpadService(LaunchpadService):
239
239
    """Service that just absorbs requests without sending to server.
240
 
    
 
240
 
241
241
    The dummy service does not need authentication.
242
242
    """
243
243