~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2005-11-10 21:04:19 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20051110210419-a402638d94693825
Handled whitespace branch names better

Show diffs side-by-side

added added

removed removed

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