From bbca80a3ed2bf0c0c48a307b2ea95895611b2ec3 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 24 Oct 2014 09:20:45 +0200 Subject: [PATCH] [entropy.client.interfaces.server] fix format string --- lib/entropy/server/interfaces/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/entropy/server/interfaces/main.py b/lib/entropy/server/interfaces/main.py index 02b364782..2196f09a6 100644 --- a/lib/entropy/server/interfaces/main.py +++ b/lib/entropy/server/interfaces/main.py @@ -6665,7 +6665,7 @@ class Server(Client): env['PKG_REVISION'] = str(pkg_rev) env['PKG_DEPS'] = str("\n".join(pkg_deps)) env['PKG_NEEDED_LIBS'] = str("\n".join( - ["%s|%s" % (a, b, x, y, c) for a, b, x, y, c in + ["%s|%s|%s|%s|%s" % (a, b, x, y, c) for a, b, x, y, c in pkg_needed])) env['PKG_PROVIDED_LIBS'] = str("\n".join( ["%s|%s|%s" % (x, y, z) for x, y, z in \