~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/migrater/migrater.py

  • Committer: William Grant
  • Date: 2012-01-01 03:10:25 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101031025-pcl0na3sbgfrztcw
utilities

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')