/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: 2009-07-14 21:07:36 UTC
  • mto: This revision was merged to the branch mainline in revision 4538.
  • Revision ID: aaron@aaronbentley.com-20090714210736-1m81n4nls5fe4pxy
Updates from review.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3066
3066
    def __init__(self, source_branch, target_branch):
3067
3067
        self.source_branch = source_branch
3068
3068
        self.target_branch = target_branch
3069
 
 
3070
 
 
3071
 
class WrongCommitBasis(BzrError):
3072
 
 
3073
 
    _fmt = 'TreeTransform not based on branch basis: %(tree_rev_id)s'
3074
 
 
3075
 
    def __init__(self, tree):
3076
 
        BzrError.__init__(self, tree=tree, tree_rev_id=tree.get_revision_id())
3077
 
 
3078
 
 
3079
 
class MergeParentsInFirstCommit(BzrError):
3080
 
 
3081
 
    _fmt = 'Merge parents supplied for initial commit.'