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
The encodestring() and decodestring() was removed in Python3.9
encodestring()
decodestring()
From Python bugs:
base64.encodestring() and base64.decodestring() are aliases deprecated since Python 3.1: encodebytes() and decodebytes() should be used instead.
base64.encodestring()
base64.decodestring()
encodebytes()
decodebytes()
The text was updated successfully, but these errors were encountered:
Just go to /addons/custom_addons/jasper_reports/wizard/jasper_create_data_template.py and replace the following line:
base64_str = base64.encodestring( With base64_str = base64.encodebytes(
base64_str = base64.encodestring(
base64_str = base64.encodebytes(
Sorry, something went wrong.
No branches or pull requests
The
encodestring()
anddecodestring()
was removed in Python3.9From Python bugs:
The text was updated successfully, but these errors were encountered: