~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/puller/worker.py

  • Committer: William Grant
  • Date: 2012-01-01 07:14:04 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101071404-6cwyfuxq8h63mfhv
Fix some lp.codehosting imports to be first again. It loads bzr plugins :(

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__ = [