1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-19 08:42:11 +01:00

Fix traceback in 'linkpac --disable-build'

This commit is contained in:
Daniel Mach 2024-11-25 08:52:58 +01:00
parent 183a23ccc9
commit 5c483fadab

View File

@ -3301,7 +3301,7 @@ def link_pac(
if disable_build or disable_publish:
meta_change = True
root = ET.fromstring("".join(dst_meta))
root = ET.fromstring(b"".join(dst_meta))
if disable_build:
elm = root.find('build')