~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/migrater/migrater.py

  • Committer: Curtis Hovey
  • Date: 2011-12-24 17:49:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14602.
  • Revision ID: curtis.hovey@canonical.com-20111224174930-xk1d5cvhyxq46ctf
Moved webapp to lp.services.

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
12
11
import os
13
12
import re
14
13
 
15
 
from find import (
16
 
    find_files,
17
 
    find_matches,
18
 
    )
 
14
from find import find_files, find_matches
 
15
from optparse import OptionParser
19
16
from rename_module import (
20
 
    bzr_add,
21
 
    bzr_move_file,
22
 
    bzr_remove_file,
23
 
    rename_module,
24
 
    update_references,
25
 
    )
 
17
    bzr_add, bzr_move_file, bzr_remove_file, rename_module, update_references)
26
18
from rename_zcml import handle_zcml
27
 
from utils import (
28
 
    log,
29
 
    run,
30
 
    spew,
31
 
    )
 
19
from utils import log, run, spew
32
20
 
33
21
 
34
22
MOVER = os.path.join(os.path.dirname(__file__), 'rename_module.py')