Comment 2 for bug 1911050

Revision history for this message
Bruno Redondi (brunor73) wrote :

See https://docs.python.org/3.9/whatsnew/3.9.html#removed

"array.array: tostring() and fromstring() methods have been removed. They were aliases to tobytes() and frombytes(), deprecated since Python 3.2."

editing /usr/lib/python3/dist-packages/landscape/lib/network.py and replacing "res = status_cmd.tostring()" with "res = status_cmd.tobytes()" solves the problem