~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/devscripts/autoland.py

  • Committer: William Grant
  • Date: 2012-01-01 03:03:28 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101030328-xtkp6ob1q8h40sxw
Format the non-contrib bits of lib.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
"""Land an approved merge proposal."""
2
2
 
 
3
from bzrlib.errors import BzrCommandError
3
4
from launchpadlib.launchpad import Launchpad
4
5
from launchpadlib.uris import (
5
 
    DEV_SERVICE_ROOT, EDGE_SERVICE_ROOT, LPNET_SERVICE_ROOT,
6
 
    STAGING_SERVICE_ROOT)
 
6
    DEV_SERVICE_ROOT,
 
7
    EDGE_SERVICE_ROOT,
 
8
    LPNET_SERVICE_ROOT,
 
9
    STAGING_SERVICE_ROOT,
 
10
    )
7
11
from lazr.uri import URI
8
 
from bzrlib.errors import BzrCommandError
9
12
 
10
13
 
11
14
class MissingReviewError(Exception):