~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

merge from integration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1366
1366
    """Upgrade branch storage to current format.
1367
1367
 
1368
1368
    The check command or bzr developers may sometimes advise you to run
1369
 
    this command.
1370
 
 
1371
 
    This version of this command upgrades from the full-text storage
1372
 
    used by bzr 0.0.8 and earlier to the weave format (v5).
 
1369
    this command. When the default format has changed you may also be warned
 
1370
    during other operations to upgrade.
1373
1371
    """
1374
 
    takes_args = ['dir?']
 
1372
    takes_args = ['url?']
1375
1373
 
1376
 
    def run(self, dir=u'.'):
 
1374
    def run(self, url='.'):
1377
1375
        from bzrlib.upgrade import upgrade
1378
 
        upgrade(dir)
 
1376
        upgrade(url)
1379
1377
 
1380
1378
 
1381
1379
class cmd_whoami(Command):