Skip to content

Commit

Permalink
Fix traceback in 'linkpac --disable-build'
Browse files Browse the repository at this point in the history
  • Loading branch information
dmach committed Nov 25, 2024
1 parent 183a23c commit 5c483fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 5c483fa

Please sign in to comment.