/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Robert Collins
  • Date: 2006-02-15 06:08:08 UTC
  • mto: (1534.1.24 integration)
  • mto: This revision was merged to the branch mainline in revision 1554.
  • Revision ID: robertc@robertcollins.net-20060215060808-d47d40998fea0aee
Give info some reasonable output and tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
715
715
    @display_command
716
716
    def run(self, branch=None):
717
717
        import info
718
 
        b = WorkingTree.open_containing(branch)[0].branch
719
 
        info.show_info(b)
 
718
        info.show_bzrdir_info(bzrdir.BzrDir.open_containing(branch)[0])
720
719
 
721
720
 
722
721
class cmd_remove(Command):
819
818
            # locations if the user supplies an extended path
820
819
            if not os.path.exists(location):
821
820
                os.mkdir(location)
822
 
        WorkingTree.create_standalone(location)
 
821
        bzrdir.BzrDir.create_standalone_workingtree(location)
823
822
 
824
823
 
825
824
class cmd_diff(Command):