Skip to content

Commit

Permalink
Merge pull request #1666 from dmach/fix-traceback-linkpac-disable-build
Browse files Browse the repository at this point in the history
Fix traceback in 'linkpac --disable-build'
  • Loading branch information
dmach authored Nov 28, 2024
2 parents 094ffdf + 5c483fa commit 608cf6e
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 608cf6e

Please sign in to comment.