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
This is an outstanding minor bug from the python3 conversion. When outputting the type of the nodes, it stringifies it to b'name' instead of just plain name
Which means it's got a 'bytes' rather than a string.
There's possibly other output where this should be corrected as well, I didn't exhaustively check yet, just noticed this one.
I think this output comes from action_nodes in solar_capture_monitor - but it wold probably be better to correct it in stringify_table (in tabulate.py) - which currently just does str(f) on the field it's going to print, but could be improved to something different based in data type.
The text was updated successfully, but these errors were encountered:
This is an outstanding minor bug from the python3 conversion. When outputting the type of the nodes, it stringifies it to
b'name'
instead of just plainname
Which means it's got a 'bytes' rather than a string.
There's possibly other output where this should be corrected as well, I didn't exhaustively check yet, just noticed this one.
I think this output comes from
action_nodes
insolar_capture_monitor
- but it wold probably be better to correct it instringify_table
(intabulate.py
) - which currently just doesstr(f)
on the field it's going to print, but could be improved to something different based in data type.The text was updated successfully, but these errors were encountered: