I noticed a lot of commands that called self.status() messing up.
status() returns 2 values, but you were only unpacking one.
268:
d = self.status()
275:
d = self.status()
282:
d = self.status()
These didn't work until I changed them to d,players = self.status()
Hope this helps, hate to see this module fall to the wayside!
2009-09-10 02:28:53 UTC in SRCDS.py