~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2008-04-12 05:48:07 UTC
  • mto: This revision was merged to the branch mainline in revision 3364.
  • Revision ID: aaron@aaronbentley.com-20080412054807-47yd7dgjufa0nf98
rename 'sharing' to 'use-shared'

Show diffs side-by-side

added added

removed removed

Lines of Context:
4435
4435
                     lightweight_checkout='Reconfigure to a lightweight'
4436
4436
                     ' checkout.',
4437
4437
                     standalone='Reconfigure to be standalone.',
4438
 
                     sharing='Reconfigure to use a shared repository.'),
 
4438
                     use_shared='Reconfigure to use a shared repository.'),
4439
4439
                     Option('bind-to', help='Branch to bind checkout to.',
4440
4440
                            type=str),
4441
4441
                     Option('force',
4457
4457
        elif target_type == 'lightweight-checkout':
4458
4458
            reconfiguration = reconfigure.Reconfigure.to_lightweight_checkout(
4459
4459
                directory, bind_to)
4460
 
        elif target_type == 'sharing':
4461
 
            reconfiguration = reconfigure.Reconfigure.to_sharing(directory)
 
4460
        elif target_type == 'use-shared':
 
4461
            reconfiguration = reconfigure.Reconfigure.to_use_shared(directory)
4462
4462
        elif target_type == 'standalone':
4463
4463
            reconfiguration = reconfigure.Reconfigure.to_standalone(directory)
4464
4464
        reconfiguration.apply(force)