From 055b5e431bdcc88bb131c8b6263aec27abf72631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Mon, 29 Feb 2016 10:40:02 +0100 Subject: [PATCH] [paths] Use variant.uid explicitly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- pungi/paths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/paths.py b/pungi/paths.py index c5be033a..d47c5b4b 100644 --- a/pungi/paths.py +++ b/pungi/paths.py @@ -247,7 +247,7 @@ class WorkPaths(object): Examples: work/x86_64/repo_package_list/Server.x86_64.rpm.conf """ - file_name = "%s.%s" % (variant, arch) + file_name = "%s.%s" % (variant.uid, arch) if pkg_type is not None: file_name += ".%s" % pkg_type file_name += ".conf"