~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2008-05-12 03:44:54 UTC
  • Revision ID: aaron@aaronbentley.com-20080512034454-hj01v2w5shjodk21
Move heads registration to bzrtools init

Show diffs side-by-side

added added

removed removed

Lines of Context:
663
663
        finally:
664
664
            target_tree.unlock()
665
665
 
666
 
 
 
666
from heads import cmd_heads
667
667
commands = [
668
668
            cmd_baz_import,
669
669
            cmd_baz_import_branch,
670
670
            cmd_branches,
671
 
            cmd_trees,
672
671
            cmd_branch_history,
673
672
            cmd_cbranch,
674
673
            cmd_cdiff,
675
674
            cmd_clean_tree,
676
675
            cmd_fetch_ghosts,
677
676
            cmd_graph_ancestry,
 
677
            cmd_heads,
678
678
            cmd_import,
679
679
            cmd_link_tree,
680
680
            cmd_multi_pull,
683
683
            cmd_shelf,
684
684
            cmd_shell,
685
685
            cmd_shelve,
 
686
            cmd_trees,
686
687
            cmd_unshelve,
687
688
            cmd_zap,
688
689
            ]