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
for example:
print(plumbum.local['echo'](b'test'))
should result in
test
but instead it results in:
b'test'
byte objects are not even supported in command names:
plumbum.local[b'echo']
results in a type error
TypeError: a bytes-like object is required, not 'str'
in plumbum/machines/local.py:243
plumbum/machines/local.py:243
The text was updated successfully, but these errors were encountered:
No branches or pull requests
for example:
print(plumbum.local['echo'](b'test'))
should result in
test
but instead it results in:
b'test'
byte objects are not even supported in command names:
plumbum.local[b'echo']
results in a type error
TypeError: a bytes-like object is required, not 'str'
in
plumbum/machines/local.py:243
The text was updated successfully, but these errors were encountered: