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
Calling...
print("hello\nworld")
... from an action results in ...
2021-12-06 15:46:30 IO hello world 2021-12-06 15:46:30 IO
... rather than ...
2021-12-06 15:46:30 IO hello world
The text was updated successfully, but these errors were encountered:
This is what I'm seeing on my end. Each write to stdout appears as its own log line.
print("hello\nworld") -> sys.stdout.write('hello\nworld') sys.stdout.write('\n')
print("hello") -> sys.stdout.write("hello\n")
print() -> sys.stdout.write('\n')
May be io.TextIOWrapper's fault.
io.TextIOWrapper
Sorry, something went wrong.
talon-rust has a new log viewer which doesn't have this problem, so I'm going to close this
No branches or pull requests
Calling...
... from an action results in ...
... rather than ...
The text was updated successfully, but these errors were encountered: