~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Martin Pool
  • Date: 2005-09-22 11:57:15 UTC
  • Revision ID: mbp@sourcefrog.net-20050922115715-5c756ae94451c66f
- run conversion to weaves from the 'bzr upgrade' command

Show diffs side-by-side

added added

removed removed

Lines of Context:
1038
1038
 
1039
1039
    The check command or bzr developers may sometimes advise you to run
1040
1040
    this command.
 
1041
 
 
1042
    This version of this command upgrades from the full-text storage
 
1043
    used by bzr 0.0.8 and earlier to the weave format (v5).
1041
1044
    """
1042
1045
    takes_args = ['dir?']
1043
1046
 
1044
1047
    def run(self, dir='.'):
1045
1048
        from bzrlib.upgrade import upgrade
1046
 
        upgrade(find_branch(dir))
 
1049
        upgrade(dir)
1047
1050
 
1048
1051
 
1049
1052