~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2005-11-09 20:48:24 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20051109204824-ad8771b15f74b6f6
Renamed force-reweave-inventory to fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
import bzrlib.branch
13
13
from bzrlib.errors import BzrCommandError
14
14
sys.path.append(os.path.dirname(__file__))
15
 
from reweave_inventory import cmd_force_reweave_inventory
 
15
from reweave_inventory import cmd_fix
16
16
 
17
17
Option.OPTIONS['ignored'] = Option('ignored',
18
18
        help='delete all ignored files.')
145
145
        shell.run_shell()
146
146
 
147
147
commands = [cmd_shelve, cmd_unshelve, cmd_clean_tree, cmd_graph_ancestry,
148
 
            cmd_fetch_ghosts, cmd_patch, cmd_shell, 
149
 
            cmd_force_reweave_inventory]
 
148
            cmd_fetch_ghosts, cmd_patch, cmd_shell, cmd_fix]
150
149
 
151
150
command_decorators = []
152
151