We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
from weasyprint import HTML html_str = """<body> <table style="border-collapse: collapse; width: 100%; height: 156px; border-color: #000000;" border="1"> <tbody> <tr style="height: 26px;"> <td style="width: 7.043051359516616%; height: 26px;"><strong>QTY</strong></td> </tr> </tbody> </table> </body> """ html = HTML(string=html_str) main_doc = html.render(presentational_hints=True) main_doc.write_pdf()
The code above will cause a runtime TypeError Stream.set_color_rgb() missing 1 required positional argument: 'b' in Weasyprint 60.0.
Stream.set_color_rgb() missing 1 required positional argument: 'b'
I tested that the same code works in version 59.0 so I suspect it could be a regression.
The text was updated successfully, but these errors were encountered:
Thanks a lot for the detailed report 💜 .
You’re right, that’s a regression introduced by 8b2047c. Let’s fix this!
Sorry, something went wrong.
3088ee9
No branches or pull requests
The code above will cause a runtime TypeError
Stream.set_color_rgb() missing 1 required positional argument: 'b'
in Weasyprint 60.0.I tested that the same code works in version 59.0 so I suspect it could be a regression.
The text was updated successfully, but these errors were encountered: