~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2006-03-22 15:21:38 UTC
  • Revision ID: abentley@panoramicfeedback.com-20060322152138-532543d08f4eb8db
Removed obsolete reweave_inventory

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
from bzrlib.option import Option
13
13
import bzrlib.branch
14
14
from bzrlib.errors import BzrCommandError
15
 
from reweave_inventory import cmd_fix
16
15
sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), 
17
16
                                                 "external")))
18
17
from bzrlib import DEFAULT_IGNORE
264
263
 
265
264
commands = [cmd_shelve, cmd_unshelve, cmd_shelf, cmd_clean_tree,
266
265
            cmd_graph_ancestry, cmd_fetch_ghosts, cmd_patch, cmd_shell,
267
 
            cmd_fix, cmd_branch_history]
 
266
            cmd_branch_history]
268
267
 
269
268
command_decorators = []
270
269