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
Bug I am trying to display a proper error message but the whole traceback is being printed
Python code raise Exception("Error sample")
raise Exception("Error sample")
Javascript code
const messages = await PythonShell.run("script.py", options); console.log("File Validated Successfully"); console.log(`Results - ${messages}`);
Expected behavior Exception: Error Sample
Actual behavior Whole traceback is printed. When I checked the error object in Javascript, it looks like this -
{ executable: 'python3', options: [ '-u' ], script: 'script.py', args: [], exitCode: 1, logs: [] }
Other Information
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug
I am trying to display a proper error message but the whole traceback is being printed
Python code
raise Exception("Error sample")
Javascript code
Expected behavior
Exception: Error Sample
Actual behavior
Whole traceback is printed. When I checked the error object in Javascript, it looks like this -
Other Information
The text was updated successfully, but these errors were encountered: