~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2006-04-12 18:13:33 UTC
  • mfrom: (360.1.2 bzrtools)
  • Revision ID: abentley@panoramicfeedback.com-20060412181333-de8c5c460e75696f
Merge switch command

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
from errors import CommandError
8
8
from patchsource import BzrPatchSource
9
9
from shelf import Shelf
 
10
from switch import cmd_switch
10
11
import sys
11
12
import os.path
12
13
from bzrlib.option import Option
355
356
commands = [cmd_shelve, cmd_unshelve, cmd_shelf, cmd_clean_tree,
356
357
            cmd_graph_ancestry, cmd_fetch_ghosts, cmd_patch, cmd_shell,
357
358
            cmd_branch_history, cmd_zap, cmd_cbranch, cmd_branches, 
358
 
            cmd_multi_pull]
 
359
            cmd_multi_pull, cmd_switch]
359
360
 
360
361
 
361
362
command_decorators = []