/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

[merge] jam-integration 1495

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
... except:
35
35
...   print sys.exc_type
36
36
...   print sys.exc_value
37
 
...   print sys.exc_value.path
 
37
...   path = getattr(sys.exc_value, 'path')
 
38
...   if path is not None:
 
39
...     print path
38
40
bzrlib.errors.NotBranchError
39
41
Not a branch: /foo/bar
40
42
/foo/bar
411
413
    """Parents are mismatched between two revisions."""
412
414
    
413
415
 
 
416
class WeaveInvalidChecksum(WeaveError):
 
417
    """Text did not match it's checksum: %(message)s"""
 
418
 
 
419
 
414
420
class NoSuchExportFormat(BzrNewError):
415
421
    """Export format %(format)r not supported"""
416
422
    def __init__(self, format):