~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/migrater/migrater.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-03 17:08:40 UTC
  • mfrom: (14600.3.7 germinate-all-dev-series)
  • Revision ID: launchpad@pqm.canonical.com-20120103170840-qw8albc2cp5bk7ry
[r=wgrant][bug=904538] Let cron.germinate handle multiple dev series.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
"""
9
9
 
10
10
import errno
 
11
from optparse import OptionParser
11
12
import os
12
13
import re
13
14
 
14
 
from find import find_files, find_matches
15
 
from optparse import OptionParser
 
15
from find import (
 
16
    find_files,
 
17
    find_matches,
 
18
    )
16
19
from rename_module import (
17
 
    bzr_add, bzr_move_file, bzr_remove_file, rename_module, update_references)
 
20
    bzr_add,
 
21
    bzr_move_file,
 
22
    bzr_remove_file,
 
23
    rename_module,
 
24
    update_references,
 
25
    )
18
26
from rename_zcml import handle_zcml
19
 
from utils import log, run, spew
 
27
from utils import (
 
28
    log,
 
29
    run,
 
30
    spew,
 
31
    )
20
32
 
21
33
 
22
34
MOVER = os.path.join(os.path.dirname(__file__), 'rename_module.py')