From 7be5838e4e6be3a2df346ed2e2a0fd9d7c06af97 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 13 Nov 2019 15:48:45 +0100 Subject: [PATCH] fix decoding for osc aggregatepac --- osc/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/core.py b/osc/core.py index b6f8b292..b1289e48 100644 --- a/osc/core.py +++ b/osc/core.py @@ -5237,7 +5237,7 @@ def aggregate_pac(src_project, src_package, dst_project, dst_package, repo_map = path_args=(quote_plus(dst_project), quote_plus(dst_package)), template_args=None, create_new=False, apiurl=apiurl) - root = ET.fromstring(''.join(dst_meta)) + root = ET.fromstring(b''.join(dst_meta)) if root.get('project') != dst_project: # The source comes from a different project via a project link, we need to create this instance meta_change = True