~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Robert Collins
  • Date: 2006-05-05 04:09:31 UTC
  • mto: (1697.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1701.
  • Revision ID: robertc@robertcollins.net-20060505040931-20b87352d3434037
Test break lock on old format branches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2472
2472
        if location is None:
2473
2473
            location = u'.'
2474
2474
        control, relpath = bzrdir.BzrDir.open_containing(location)
2475
 
        control.break_lock()
 
2475
        try:
 
2476
            control.break_lock()
 
2477
        except NotImplementedError:
 
2478
            pass
2476
2479
        
2477
2480
 
2478
2481