<type 'exceptions.IndexError'>
Python 2.7.12: /usr/bin/python
Sun Jul 21 12:31:15 2024

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

 /home/webuser/wwwhome/cgi-bin/wikiGraph2.py in ()
    562         
    563         #https://dh.aks.ac.kr/cgi-bin/wikiGraph2.py?account=edu&script=Celery4.lst
    564         #https://dh.aks.ac.kr/cgi-bin/wikiGraph2.py?url=dh.aks.ac.kr/Edu/wiki&script=Celery4.lst        
    565         
=>  566 main()
main = <function main>
 /home/webuser/wwwhome/cgi-bin/wikiGraph2.py in main()
    556         if direction=="RL": direction="LR"
    557 
=>  558         displayNetwork( account, guestUrl, script, direction )
    559         #displayNetwork( 'tutor', 'sov_help.lst', 'NORMAL' )
    560         #displayNetwork( 'tutor', 'sov_help.lst', 'UD' )
global displayNetwork = <function displayNetwork>, account = 'classics', guestUrl = '', script = '\xec\x8b\xa0\xec\xa0\x95\xec\x88\x98_\xea\xb7\xb8\xeb\x9e\x98\xed\x94\x84.lst', direction = 'NORMAL'
 /home/webuser/wwwhome/cgi-bin/wikiGraph2.py in displayNetwork(account='classics', guestUrl='', script='\xec\x8b\xa0\xec\xa0\x95\xec\x88\x98_\xea\xb7\xb8\xeb\x9e\x98\xed\x94\x84.lst', directionType='NORMAL')
    455 
    456         #----------------------------
=>  457         drawGraph( account, guestUrl, script )
    458         #----------------------------
    459 
global drawGraph = <function drawGraph>, account = 'classics', guestUrl = '', script = '\xec\x8b\xa0\xec\xa0\x95\xec\x88\x98_\xea\xb7\xb8\xeb\x9e\x98\xed\x94\x84.lst'
 /home/webuser/wwwhome/cgi-bin/wikiGraph2.py in drawGraph(account='classics', guestUrl='', script='\xec\x8b\xa0\xec\xa0\x95\xec\x88\x98_\xea\xb7\xb8\xeb\x9e\x98\xed\x94\x84.lst')
    262                                         i = 0
    263                                         while i < valid:
=>  264                                                 list[i] = row[i]
    265                                                 i += 1
    266                                         if list[2] == 'line':
list = ['goes', 'to', '~\xeb\xa1\x9c', '\xea\xb0\x84\xeb\x8b\xa4'], i = 4, row = ['goes', 'to', '~\xeb\xa1\x9c', '\xea\xb0\x84\xeb\x8b\xa4', 'arrow 2']

<type 'exceptions.IndexError'>: list assignment index out of range
      args = ('list assignment index out of range',)
      message = 'list assignment index out of range'