~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/update-stacked-on.py

  • Committer: Curtis Hovey
  • Date: 2011-08-12 14:39:51 UTC
  • mto: This revision was merged to the branch mainline in revision 13685.
  • Revision ID: curtis.hovey@canonical.com-20110812143951-74vfvrt37gtt4fz2
Sorted imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
__metaclass__ = type
22
22
 
23
23
import _pythonpath
24
 
 
25
24
from collections import namedtuple
26
25
import sys
27
26
 
28
 
from bzrlib import errors
29
27
from bzrlib.bzrdir import BzrDir
30
28
from bzrlib.config import TransportConfig
 
29
from bzrlib import errors
31
30
 
 
31
from lp.codehosting.vfs import get_rw_server, get_ro_server
 
32
from lp.codehosting.bzrutils import get_branch_stacked_on_url
32
33
from lp.code.interfaces.codehosting import branch_id_alias
33
 
from lp.codehosting.bzrutils import get_branch_stacked_on_url
34
 
from lp.codehosting.vfs import (
35
 
    get_ro_server,
36
 
    get_rw_server,
37
 
    )
38
34
from lp.services.scripts.base import LaunchpadScript
39
35
 
40
36