/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

  • Committer: Jelmer Vernooij
  • Date: 2009-03-27 02:50:58 UTC
  • mto: (0.200.305 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20090327025058-310jmu8b3wklghoc
Support lightweight checkouts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        self.present_refs = present_refs
46
46
 
47
47
 
48
 
class LightWeightCheckoutsNotSupported(BzrGitError):
49
 
    _fmt = "bzr-git does not support creating lightweight checkouts at the moment."
50
 
 
51
 
 
52
48
def convert_dulwich_error(error):
53
49
    """Convert a Dulwich error to a Bazaar error."""
54
50