~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

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