You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix the etree in python lxml wanting to have the file opened in the 'wb'
mode. Fixes the 'TypeError: write() argument must be str, not bytes'
error message but retains compatibility if lxml would be missing. Closes
issues tjfontaine#26 and tjfontaine#28
I changed line 223 in airprint-generate.py from
f = open(fname, 'w')
to
f= open(fname, 'wb')
otherwise, it would not build (I am using fedora 32)
The text was updated successfully, but these errors were encountered: