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

Merge pull request #1666 from dmach/fix-traceback-linkpac-disable-build

Fix traceback in 'linkpac --disable-build'
This commit is contained in:
Daniel Mach 2024-11-28 14:37:24 +01:00 committed by GitHub
commit 608cf6e70e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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')