/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: 2005-10-13 01:29:22 UTC
  • Revision ID: robertc@lifelesslap.robertcollins.net-20051013012922-b0249adeccecc4ed
teach check about ghosts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1050
1050
    detect data corruption or bzr bugs.
1051
1051
    """
1052
1052
    takes_args = ['dir?']
 
1053
    takes_options = ['verbose']
1053
1054
 
1054
 
    def run(self, dir='.'):
 
1055
    def run(self, dir='.', verbose=False):
1055
1056
        from bzrlib.check import check
1056
 
 
1057
 
        check(Branch.open_containing(dir))
 
1057
        check(Branch.open_containing(dir), verbose)
1058
1058
 
1059
1059
 
1060
1060
class cmd_scan_cache(Command):