<type 'exceptions.IndexError'>
Python 2.7.12: /usr/bin/python
Sat May 25 04:52:51 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 = 'red', guestUrl = '', script = '\xea\xb9\x80\xed\x98\x84\xec\xa7\x80(2018).lst', direction = 'NORMAL'
 /home/webuser/wwwhome/cgi-bin/wikiGraph2.py in displayNetwork(account='red', guestUrl='', script='\xea\xb9\x80\xed\x98\x84\xec\xa7\x80(2018).lst', directionType='NORMAL')
    455 
    456         #----------------------------
=>  457         drawGraph( account, guestUrl, script )
    458         #----------------------------
    459 
global drawGraph = <function drawGraph>, account = 'red', guestUrl = '', script = '\xea\xb9\x80\xed\x98\x84\xec\xa7\x80(2018).lst'
 /home/webuser/wwwhome/cgi-bin/wikiGraph2.py in drawGraph(account='red', guestUrl='', script='\xea\xb9\x80\xed\x98\x84\xec\xa7\x80(2018).lst')
    291                                         i = 0
    292                                         while i < valid:
=>  293                                                 list[i] = row[i]
    294                                                 i += 1
    295                                         nodes.append( {'id':list[0], 'category':list[1], 'label':list[2], 'url1':list[3], 'url3':list[4], 'option':list[5]} )
list = ['\xeb\xb0\xb0\xec\x9a\xb0\xea\xb3\xa0', '\xec\x88\x98\xec\x8b\x9c\xeb\xa1\x9c', '\xec\x9d\xb5\xed\x9e\x88\xeb\x8a\x94', '\xea\xb2\x83', '\xeb\x8c\x80\xec\x83\x81', '\xeb\xb0\xb0\xec\x9a\xb0\xea\xb3\xa0'], i = 6, row = ['\xeb\xb0\xb0\xec\x9a\xb0\xea\xb3\xa0', '\xec\x88\x98\xec\x8b\x9c\xeb\xa1\x9c', '\xec\x9d\xb5\xed\x9e\x88\xeb\x8a\x94', '\xea\xb2\x83', '\xeb\x8c\x80\xec\x83\x81', '\xeb\xb0\xb0\xec\x9a\xb0\xea\xb3\xa0', '\xec\x88\x98\xec\x8b\x9c\xeb\xa1\x9c \xec\x9d\xb5\xed\x9e\x88\xeb\x8a\x94 \xea\xb2\x83 null null 1']

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