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
Sorry about that, I just posted it quickly as I was fixing it.
So it's in the file timeplugin.py line 106 sys.maxintreturns 9223372036854775807
and trigger the following error:
# RuntimeWarning: libshiboken:
Overflow: Value -9223372036854775807 exceeds limits of type [signed] "i" (4bytes)., at line 106, in "${HOME}/Library/Preferences/Autodesk/maya/2017/scripts/capture_gui/plugins/timeplugin.py"
# OverflowError
# RuntimeWarning: libshiboken: Overflow: Value 9223372036854775807 exceeds limits of type [signed] "i" (4bytes)., at line 106, in ${HOME}/Library/Preferences/Autodesk/maya/2017/scripts/capture_gui/plugins/timeplugin.py"
On maya 2017 I have the following error.
Replacing sys.maxint with
maxint = 2 ** (struct.Struct('i').size * 8 - 1) - 1
works.The text was updated successfully, but these errors were encountered: