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

  • Committer: Jelmer Vernooij
  • Date: 2008-12-12 15:37:07 UTC
  • mto: (0.215.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20081212153707-usxaq2v8agvmp91k
Change README to be about Dulwich rather than Python-git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 
57
57
  def __init__(self, sha, *args, **kwargs):
58
58
    Exception.__init__(self, "%s is not in the pack" % sha)
59
 
 
60
 
 
61
 
class ApplyDeltaError(Exception):
62
 
    """Indicates that applying a delta failed."""
63
 
    
64
 
    def __init__(self, *args, **kwargs):
65
 
        Exception.__init__(self, *args, **kwargs)
66
 
 
67
 
 
68
 
class NotGitRepository(Exception):
69
 
    """Indicates that no Git repository was found."""
70
 
 
71
 
    def __init__(self, *args, **kwargs):
72
 
        Exception.__init__(self, *args, **kwargs)