~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2005-11-08 17:14:39 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20051108171439-6835d23881be10b8
Added force-reweave-inventory from Daniel Silverstone

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
16
 
16
17
Option.OPTIONS['ignored'] = Option('ignored',
17
18
        help='delete all ignored files.')
144
145
        shell.run_shell()
145
146
 
146
147
commands = [cmd_shelve, cmd_unshelve, cmd_clean_tree, cmd_graph_ancestry,
147
 
            cmd_fetch_ghosts, cmd_patch, cmd_shell]
 
148
            cmd_fetch_ghosts, cmd_patch, cmd_shell, 
 
149
            cmd_force_reweave_inventory]
148
150
 
149
151
command_decorators = []
150
152