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
File "xxxx/Gopherus/scripts/FastCGI.py", line 17, in FastCGI
temp1 = chr(len(data) / 256)
^^^^^^^^^^^^^^^^^^^^
TypeError: 'float' object cannot be interpreted as an integer
TO return A integer
the code should be replaced by
temp1 = chr(len(data) // 256)
The text was updated successfully, but these errors were encountered:
error:
TO return A integer
the code should be replaced by
The text was updated successfully, but these errors were encountered: