~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/link-external-sourcecode

  • Committer: Gavin Panella
  • Date: 2011-03-10 10:26:01 UTC
  • mto: This revision was merged to the branch mainline in revision 12575.
  • Revision ID: gavin.panella@canonical.com-20110310102601-0anoo739nhyvt6q1
Format imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
2
#
3
 
# Copyright 2009 Canonical Ltd.  This software is licensed under the
4
 
# GNU Affero General Public License version 3 (see the file LICENSE).
 
3
# Copyright 2009-2011 Canonical Ltd. This software is licensed under the GNU
 
4
# Affero General Public License version 3 (see the file LICENSE).
5
5
 
6
6
import optparse
7
 
 
8
 
from os import curdir, listdir, symlink, unlink
9
 
from os.path import abspath, basename, exists, islink, join, relpath
10
 
from sys import stderr, stdout
 
7
from os import (
 
8
    curdir,
 
9
    listdir,
 
10
    symlink,
 
11
    unlink,
 
12
    )
 
13
from os.path import (
 
14
    abspath,
 
15
    basename,
 
16
    exists,
 
17
    islink,
 
18
    join,
 
19
    relpath,
 
20
    )
 
21
from sys import (
 
22
    stderr,
 
23
    stdout,
 
24
    )
11
25
from urllib import unquote
12
26
from urlparse import urlparse
13
27
 
17
31
enable_default_logging()
18
32
from bzrlib.branch import Branch
19
33
from bzrlib.plugin import load_plugins
20
 
 
21
34
load_plugins()
22
35
 
23
36