~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/branch-rewrite.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-09-27 13:10:47 UTC
  • mfrom: (14027.3.8 megalint-2)
  • Revision ID: launchpad@pqm.canonical.com-20110927131047-hadx9vzjec3mowue
[r=jtv][no-qa] Mega-lint cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
lp.codehosting.rewrite.BranchRewriter for the logic of the rewritemap.
13
13
"""
14
14
 
15
 
import _pythonpath
16
 
 
17
15
import os
18
16
import sys
19
17
 
 
18
import _pythonpath
 
19
 
20
20
from canonical.config import config
21
21
from canonical.launchpad.interfaces.lpstorm import ISlaveStore
22
22
from lp.code.model.branch import Branch
23
23
from lp.codehosting.rewrite import BranchRewriter
24
 
from lp.services.log.loglevels import INFO, WARNING
 
24
from lp.services.log.loglevels import (
 
25
    INFO,
 
26
    WARNING,
 
27
    )
25
28
from lp.services.scripts.base import LaunchpadScript
26
29
 
27
30