DRAFT BOARD SEARCH
On the clock: Slingers Slammers (6487hrs)
--> -->
 
 
TypeError
Python 3.9.24: /usr/bin/python3
Sat Dec 13 18:55:30 2025

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /var/www/draftmatic/scripts/player.cgi in <module>
     67     cursor.execute(sql)
     68     row = cursor.fetchone()
=>   69     player_pos = row[8]
     70     player_name = row[1]
     71     player_proteam = row[2]
player_pos undefined, row = None

TypeError: 'NoneType' object is not subscriptable
      args = ("'NoneType' object is not subscriptable",)
      with_traceback = <built-in method with_traceback of TypeError object>