/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: Andrew Bennetts
  • Date: 2010-01-08 00:05:01 UTC
  • mfrom: (4938 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4948.
  • Revision ID: andrew.bennetts@canonical.com-20100108000501-8fj5j5ub6j5bd3es
MergeĀ lp:bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
3075
3075
    def __init__(self, source_branch, target_branch):
3076
3076
        self.source_branch = source_branch
3077
3077
        self.target_branch = target_branch
 
3078
 
 
3079
 
 
3080
class NoRoundtrippingSupport(BzrError):
 
3081
 
 
3082
    _fmt = ("Roundtripping is not supported between %(source_branch)r and "
 
3083
            "%(target_branch)r.")
 
3084
 
 
3085
    internal_error = True
 
3086
 
 
3087
    def __init__(self, source_branch, target_branch):
 
3088
        self.source_branch = source_branch
 
3089
        self.target_branch = target_branch