-
Notifications
You must be signed in to change notification settings - Fork 402
Open
Description
error:
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)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels