/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Alexander Belchenko
  • Date: 2007-11-06 07:30:29 UTC
  • mfrom: (2968 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2971.
  • Revision ID: bialix@ukr.net-20071106073029-h4gqz55szi1motes
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1252
1252
 
1253
1253
class WeaveParentMismatch(WeaveError):
1254
1254
 
1255
 
    _fmt = "Parents are mismatched between two revisions."
 
1255
    _fmt = "Parents are mismatched between two revisions. %(message)s"
1256
1256
    
1257
1257
 
1258
1258
class WeaveInvalidChecksum(WeaveError):
1482
1482
 
1483
1483
    _fmt = '%(source)s is%(permanently)s redirected to %(target)s'
1484
1484
 
1485
 
    def __init__(self, source, target, is_permament=False, qual_proto=None):
 
1485
    def __init__(self, source, target, is_permanent=False, qual_proto=None):
1486
1486
        self.source = source
1487
1487
        self.target = target
1488
 
        if is_permament:
 
1488
        if is_permanent:
1489
1489
            self.permanently = ' permanently'
1490
1490
        else:
1491
1491
            self.permanently = ''
1492
 
        self.is_permament = is_permament
1493
1492
        self._qualified_proto = qual_proto
1494
1493
        TransportError.__init__(self)
1495
1494