~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Robert Collins
  • Date: 2005-08-25 06:14:17 UTC
  • mto: (974.1.50) (1185.1.10) (1092.3.1)
  • mto: This revision was merged to the branch mainline in revision 1139.
  • Revision ID: robertc@robertcollins.net-20050825061417-3c01eb11acb37ff0
merge from mpool up to rev 1110

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
        BzrCommandError.__init__(self, msg)
100
100
 
101
101
 
 
102
class InstallFailed(BzrError):
 
103
    def __init__(self, revisions):
 
104
        self.revisions = revisions
 
105
        msg = "Could not install revisions:\n%s" % " ,".join(revisions)
 
106
        BzrError.__init__(self, msg)