/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: 2006-09-22 01:05:30 UTC
  • mto: This revision was merged to the branch mainline in revision 2048.
  • Revision ID: aaron.bentley@utoronto.ca-20060922010530-632a5f35fb488eb2
Ensure that new-model revisions aren't installed into old-model repos

Show diffs side-by-side

added added

removed removed

Lines of Context:
395
395
        self.bzrdir = bzrdir_format
396
396
 
397
397
 
 
398
class IncompatibleRevision(BzrNewError):
 
399
    """Revision is not compatible with %(repo_format)s"""
 
400
 
 
401
    def __init__(self, repo_format):
 
402
        BzrNewError.__init__(self)
 
403
        self.repo_format = repo_format
 
404
 
 
405
 
398
406
class NotVersionedError(BzrNewError):
399
407
    """%(path)s is not versioned"""
400
408
    def __init__(self, path):