From: yan11.meng Date: Thu, 4 Jun 2020 10:03:40 +0000 (+0800) Subject: fix build error with Typeerror X-Git-Tag: submit/trunk/20200612.180310^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f84b826a0331e8dfcb1f45d3e30521ff727bfb50;p=tools%2Fmic.git fix build error with Typeerror Change-Id: Ia04aec6a394bee0ca53e5cee83259cac42ad6734 --- diff --git a/mic/bootstrap.py b/mic/bootstrap.py index ba19a51..e2ea8f1 100644 --- a/mic/bootstrap.py +++ b/mic/bootstrap.py @@ -162,7 +162,7 @@ class MiniBackend(object): # list means some errors happened in the transaction and non-empty # list that there were errors preventing the ts from starting... if errs is not None: - raise errors.BootstrapError("Transaction couldn't start: %s" % '\n'.join(errs)) + raise errors.BootstrapError("Transaction couldn't start: %s" % errs) def run_pkg_script(self, pkg, prog, script, arg): mychroot = lambda: os.chroot(self.rootdir)