Skip to content

Commit ebcb155

Browse files
committed
ci: fix plist script to work with python 3.12
1 parent a71fca8 commit ebcb155

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hack/plist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
exit()
1313

1414
with open(argv[1], "r+") as _plist:
15-
data = loads(_plist.read())
15+
data = loads(_plist.read().encode())
1616
data[argv[2]] = argv[3]
1717
_plist.seek(0)
1818
_plist.write(dumps(data).decode())

0 commit comments

Comments
 (0)