Here on line 54:
|
mode = string.atoi(mode, base=8) |
there's a call of the
string.atoi() function which,
according to the Python docs is deprecated since Python 2.0. It has been removed in Python 3 and causes a crash when I try to run this library on Python 3.
Here on line 54:
moksha/moksha.hub/moksha/hub/monitoring.py
Line 54 in a5aee9f
there's a call of the
string.atoi()function which, according to the Python docs is deprecated since Python 2.0. It has been removed in Python 3 and causes a crash when I try to run this library on Python 3.