~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-12 21:23:07 UTC
  • mfrom: (2898.4.17 bzr.lp-urls-bug-121200)
  • Revision ID: pqm@pqm.ubuntu.com-20071112212307-eusj64ymto8l9abk
(robertc) Improved lp:/// URL support for the Launchpad plugin (James Henstridge).

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
register_lazy_transport(
159
159
    'lp:',
160
160
    'bzrlib.plugins.launchpad.lp_indirect',
161
 
    'launchpad_transport_indirect')
 
161
    'LaunchpadTransport')
162
162
 
163
163
register_lazy_transport(
164
164
    'lp://',
165
165
    'bzrlib.plugins.launchpad.lp_indirect',
166
 
    'launchpad_transport_indirect')
 
166
    'LaunchpadTransport')
167
167
 
168
168
def test_suite():
169
169
    """Called by bzrlib to fetch tests for this plugin"""