~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2005-10-27 04:45:06 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20051027044506-45f616c07537a1da
Got the shell basics working properly

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
        s = Shelf('.')
139
139
        return s.unshelve()
140
140
 
 
141
class cmd_shell(bzrlib.commands.Command):
 
142
    def run(self):
 
143
        import shell
 
144
        shell.run_shell()
141
145
 
142
146
commands = [cmd_shelve, cmd_unshelve, cmd_clean_tree, cmd_graph_ancestry,
143
 
            cmd_fetch_ghosts, cmd_patch]
 
147
            cmd_fetch_ghosts, cmd_patch, cmd_shell]
144
148
 
145
149
import bzrlib.builtins
146
150
if not hasattr(bzrlib.builtins, "cmd_annotate"):