[Fedora-livecd-list] Branch 'f18-branch' - imgcreate/yuminst.py

Brian C. Lane bcl at fedoraproject.org
Wed Jul 10 18:16:19 UTC 2013


 imgcreate/yuminst.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fcbcfb23b56af00d3b6c7c514604aaf76133b136
Author: Brian C. Lane <bcl at redhat.com>
Date:   Wed Jul 10 11:15:52 2013 -0700

    ts.check output is a list of tuples (#979759)

diff --git a/imgcreate/yuminst.py b/imgcreate/yuminst.py
index 6b1698f..157c2bd 100644
--- a/imgcreate/yuminst.py
+++ b/imgcreate/yuminst.py
@@ -216,7 +216,7 @@ class LiveCDYum(yum.YumBase):
         self.populateTs(keepold=0)
         deps = self.ts.check()
         if len(deps) != 0:
-            raise CreatorError("Dependency check failed : %s" % "\n".join(deps))
+            raise CreatorError("Dependency check failed : %s" % "\n".join([str(d) for d in deps]))
         rc = self.ts.order()
         if rc != 0:
             raise CreatorError("ordering packages for installation failedr. rc = %s" % rc)




More information about the livecd mailing list