/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 errors.py

Add simple HACKING document.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
class LightWeightCheckoutsNotSupported(BzrGitError):
47
47
    _fmt = "bzr-git does not support creating lightweight checkouts at the moment."
 
48
 
 
49
 
 
50
def convert_dulwich_error(error):
 
51
    """Convert a Dulwich error to a Bazaar error."""
 
52
 
 
53
    if isinstance(error, git_errors.HangupException):
 
54
        raise bzr_errors.ConnectionReset(error.msg, "")
 
55
    raise error