/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

  • Committer: Aaron Bentley
  • Date: 2007-02-14 18:16:33 UTC
  • mto: This revision was merged to the branch mainline in revision 2290.
  • Revision ID: abentley@panoramicfeedback.com-20070214181633-bdp5phbvnwobnr7b
Fix broken error

Show diffs side-by-side

added added

removed removed

Lines of Context:
786
786
    internal_error = True
787
787
 
788
788
    def __init__(self, branch, old_revision, new_revision):
789
 
        BzrError.__init__(self, branch=branch, old_revision=old_revision,
 
789
        BzrError.__init__(self, branch_location=branch.base,
 
790
                          old_revision=old_revision,
790
791
                          new_revision=new_revision)
791
792
 
792
793