~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Aaron Bentley
  • Date: 2010-02-08 19:49:53 UTC
  • mto: This revision was merged to the branch mainline in revision 5049.
  • Revision ID: aaron@aaronbentley.com-20100208194953-str2aa0t6m56v848
Clean up imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
import webbrowser
2
2
 
3
3
from bzrlib import (
4
 
    branch,
5
 
    config,
6
4
    errors,
7
5
    msgeditor,
8
 
    osutils,
9
 
    trace,
10
 
    transport,
11
6
)
12
7
from bzrlib.hooks import HookPoint, Hooks
13
8
from bzrlib.plugins.launchpad import lp_api
18
13
    _fmt = "LaunchpadLib must be installed for this operation."
19
14
 
20
15
 
21
 
try:
22
 
    from launchpadlib import (
23
 
        credentials,
24
 
        launchpad,
25
 
    )
26
 
except ImportError:
27
 
    raise NoLaunchpadLib()
28
 
 
29
16
from lazr.restfulclient import errors as restful_errors
30
17
 
31
18