~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-10-12 10:43:30 UTC
  • mfrom: (5487.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20101012104330-tsonnndvloj18v4q
(vila) Add a --no-tree option for init and push (Matthew Gordon)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1072
1072
        self.target = target
1073
1073
 
1074
1074
 
 
1075
class LockCorrupt(LockError):
 
1076
 
 
1077
    _fmt = ("Lock is apparently held, but corrupted: %(corruption_info)s\n"
 
1078
            "Use 'bzr break-lock' to clear it")
 
1079
 
 
1080
    internal_error = False
 
1081
 
 
1082
    def __init__(self, corruption_info, file_data=None):
 
1083
        self.corruption_info = corruption_info
 
1084
        self.file_data = file_data
 
1085
 
 
1086
 
1075
1087
class LockNotHeld(LockError):
1076
1088
 
1077
1089
    _fmt = "Lock not held: %(lock)s"
1383
1395
 
1384
1396
class WeaveInvalidChecksum(WeaveError):
1385
1397
 
1386
 
    _fmt = "Text did not match it's checksum: %(msg)s"
 
1398
    _fmt = "Text did not match its checksum: %(msg)s"
1387
1399
 
1388
1400
 
1389
1401
class WeaveTextDiffers(WeaveError):