/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

Fix error that was declared twice

Show diffs side-by-side

added added

removed removed

Lines of Context:
258
258
        self.not_ancestor_id = not_ancestor_id
259
259
 
260
260
 
261
 
class NotAncestor(BzrError):
262
 
    def __init__(self, rev_id, not_ancestor_id):
263
 
        self.rev_id = rev_id
264
 
        self.not_ancestor_id = not_ancestor_id
265
 
        msg = "Revision %s is not an ancestor of %s" % (not_ancestor_id, 
266
 
                                                        rev_id)
267
 
        BzrError.__init__(self, msg)
268
 
 
269
 
 
270
261
class InstallFailed(BzrError):
271
262
    def __init__(self, revisions):
272
263
        msg = "Could not install revisions:\n%s" % " ,".join(revisions)