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

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


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

New commits:
commit cacf438723482b18bbbb3e6dc4a7f707cfed64e3
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 8581978..4c1f38f 100644
--- a/imgcreate/yuminst.py
+++ b/imgcreate/yuminst.py
@@ -215,7 +215,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