-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't concat str to bytes #68
Comments
I had the same error so I added decode to the byte part and it worked for me
|
@peturjokull I tried your fix, but my script is just stuck running. When I stop it with ctl C I get this error message. My script is from the pdfquery examples. Seems like there is something up with the pdf.load() funciton. ^CTraceback (most recent call last): |
I just encountered the same issue here. And I found the To compile the newest code Git clone the repo and then type, (If you would like to change a version just change it in
It will give you a To pip install it
replace To dig a little bit deeper Codes in v0.4.3, # handle string prefix
if 'P' in label_format:
page_label = label_format['P']+page_label Codes in current github, # handle string prefix
if 'P' in label_format:
page_label = smart_unicode_decode(label_format['P']) + page_label They added a |
When loading a pdf via
pdf.load()
, specifically the Pathfinder 2E playtest pdf, this error is returned:The text was updated successfully, but these errors were encountered: