~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/puller/worker.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:
8
8
import sys
9
9
import urllib2
10
10
 
11
 
import lp.codehosting  # Needed to load bzr plugins.
12
 
 
13
 
 
14
 
lp  # squelch lint.sh
 
11
# FIRST Ensure correct plugins are loaded. Do not delete this comment or the
 
12
# line below this comment.
 
13
import lp.codehosting
15
14
 
16
15
from bzrlib import (
17
16
    errors,
34
33
    URI,
35
34
    )
36
35
 
37
 
from lp.services.config import config
38
 
from lp.services.webapp import errorlog
39
36
from lp.code.bzr import (
40
37
    BranchFormat,
41
38
    RepositoryFormat,
50
47
    BranchReferenceForbidden,
51
48
    SafeBranchOpener,
52
49
    )
 
50
from lp.services.config import config
 
51
from lp.services.webapp import errorlog
53
52
 
54
53
 
55
54
__all__ = [