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
I get logs like b'2020-07-16T10:26:57.417048619Z > Task :clean UP-TO-DATE\n'. We'd rather remove the b' at the beginning and \n' at the end.
b'2020-07-16T10:26:57.417048619Z > Task :clean UP-TO-DATE\n'
b'
\n'
I think these are Python bytestrings, which you can convert to regular strings by decoding: https://stackoverflow.com/a/606199
The text was updated successfully, but these errors were encountered:
done. added to #37
Sorry, something went wrong.
Merge pull request #37 from 22PoojaGaur/issue-29
66f152d
issue #29, #31, #32, #35
No branches or pull requests
I get logs like
b'2020-07-16T10:26:57.417048619Z > Task :clean UP-TO-DATE\n'
. We'd rather remove theb'
at the beginning and\n'
at the end.I think these are Python bytestrings, which you can convert to regular strings by decoding: https://stackoverflow.com/a/606199
The text was updated successfully, but these errors were encountered: