/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: Canonical.com Patch Queue Manager
  • Date: 2006-11-10 22:39:08 UTC
  • mfrom: (2116.3.2 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20061110223908-6965cc2d2dedfee2
(John Arbash Meinel) Cleanup error tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
750
750
class InstallFailed(BzrError):
751
751
 
752
752
    def __init__(self, revisions):
753
 
        msg = "Could not install revisions:\n%s" % " ,".join(revisions)
 
753
        revision_str = ", ".join(str(r) for r in revisions)
 
754
        msg = "Could not install revisions:\n%s" % revision_str
754
755
        BzrError.__init__(self, msg)
755
756
        self.revisions = revisions
756
757