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
line 356 in core.py
352 caller = logging.getLogger().findCaller() 353 file_path, line_no, func_name = caller[:3] 355 raise OperationalError( 356 message="\n".join( 357 [ 358 "failed to execute query at {:s}({:d}) {:s}".format(
empty exception string
>>> err = OperationalError('hoge') >>> err ''
get string is call message method
>>> err.message 'hoge'
why?
The text was updated successfully, but these errors were encountered:
@bindi-mo I'm not sure what you are asking for. Are you suggesting that OperationalError class should implement __str__ method?
OperationalError
__str__
Sorry, something went wrong.
yes
>>> err = ValueError('hoge') >>> str(err) 'hoge'
Implement __str__ method for OperationalError: #83
5a68db4
Signed-off-by: Tsuyoshi Hombashi <[email protected]>
I had implemented __str__ method for OperationalError at SimpleSQLite 1.5.4. Thank you for your feedback.
SimpleSQLite 1.5.4
No branches or pull requests
line 356 in core.py
empty exception string
get string is call message method
why?
The text was updated successfully, but these errors were encountered: