~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2005-08-12 15:41:44 UTC
  • Revision ID: mbp@sourcefrog.net-20050812154144-bc98570a78b8f633
- merge in deferred revfile work

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
        msg = "Branch %s has no revision %s" % (branch, revision)
92
92
        BzrError.__init__(self, msg)
93
93
 
94
 
class InstallFailed(BzrError):
95
 
    def __init__(self, revisions):
96
 
        self.revisions = revisions
97
 
        msg = "Could not install revisions:\n%s" % " ,".join(revisions)
98
 
        BzrError.__init__(self, msg)
 
94