~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: aaron.bentley at utoronto
  • Date: 2005-08-21 00:08:08 UTC
  • mto: (1092.1.41) (1185.3.4)
  • mto: This revision was merged to the branch mainline in revision 1110.
  • Revision ID: aaron.bentley@utoronto.ca-20050821000808-2a0e6ef95b1bca59
Changed copy_multi to permit failure and return a tuple, tested missing required revisions

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
 
 
 
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)