You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently installed carml, and executing any command results in an error. Stack trace attached (with -d option):
carml -d stream -L
Error: decoding to str: need a bytes-like object, tuple found
Traceback (most recent call last):
File "/home/piyush/.local/lib/python3.8/site-packages/twisted/internet/defer.py", line 661, in callback
self._startRunCallbacks(result)
File "/home/piyush/.local/lib/python3.8/site-packages/twisted/internet/defer.py", line 763, in _startRunCallbacks
self._runCallbacks()
File "/home/piyush/.local/lib/python3.8/site-packages/twisted/internet/defer.py", line 857, in _runCallbacks
current.result = callback( # type: ignore[misc]
File "/home/piyush/.local/lib/python3.8/site-packages/twisted/internet/defer.py", line 1750, in gotResult
current_context.run(_inlineCallbacks, r, gen, status)
--- ---
File "/home/piyush/.local/lib/python3.8/site-packages/twisted/internet/defer.py", line 1660, in _inlineCallbacks
result = current_context.run(gen.send, result)
File "/home/piyush/.local/lib/python3.8/site-packages/carml/cli.py", line 156, in _startup
print("Connected via {}".format(str(tor.protocol.transport.addr, "utf8")))
builtins.TypeError: decoding to str: need a bytes-like object, tuple found
It seems like there is some change in the way tor returns certain data that the carml's current implementation is not able to decode.
The text was updated successfully, but these errors were encountered:
I did a pip install carml in a new virtualenv (ended up with Python 3.9.2) and the above command worked. Can you dump your python version and results of pip freeze (if it's in a virtualenv) please?
I recently installed carml, and executing any command results in an error. Stack trace attached (with -d option):
carml -d stream -L
Error: decoding to str: need a bytes-like object, tuple found
Traceback (most recent call last):
File "/home/piyush/.local/lib/python3.8/site-packages/twisted/internet/defer.py", line 661, in callback
self._startRunCallbacks(result)
File "/home/piyush/.local/lib/python3.8/site-packages/twisted/internet/defer.py", line 763, in _startRunCallbacks
self._runCallbacks()
File "/home/piyush/.local/lib/python3.8/site-packages/twisted/internet/defer.py", line 857, in _runCallbacks
current.result = callback( # type: ignore[misc]
File "/home/piyush/.local/lib/python3.8/site-packages/twisted/internet/defer.py", line 1750, in gotResult
current_context.run(_inlineCallbacks, r, gen, status)
--- ---
File "/home/piyush/.local/lib/python3.8/site-packages/twisted/internet/defer.py", line 1660, in _inlineCallbacks
result = current_context.run(gen.send, result)
File "/home/piyush/.local/lib/python3.8/site-packages/carml/cli.py", line 156, in _startup
print("Connected via {}".format(str(tor.protocol.transport.addr, "utf8")))
builtins.TypeError: decoding to str: need a bytes-like object, tuple found
It seems like there is some change in the way tor returns certain data that the carml's current implementation is not able to decode.
The text was updated successfully, but these errors were encountered: