--> -->
 
 
<type 'exceptions.NameError'>
Python 2.7.12: /usr/bin/python
Mon Dec 15 09:05:05 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.

 /home/sandbox/public_html/cgi-bin/SemanticWikiPage.py in ()
    199         #node=decode(node)
    200 
    201         displayResults("templateLst.htm", db, project, node)
    202 
=>  203 main()
main = <function main>
 /home/sandbox/public_html/cgi-bin/SemanticWikiPage.py in main()
    199         #node=decode(node)
    200 
=>  201         displayResults("templateLst.htm", db, project, node)
    202 
    203 main()
global displayResults = <function displayResults>, db = 'hanyang2022', project = 'hanyang2022', node = '\xec\x9d\xb4\xeb\x8b\xb9-\xe6\x9d\x8e\xe7\x91\xad'
 /home/sandbox/public_html/cgi-bin/SemanticWikiPage.py in displayResults(template='templateLst.htm', database='hanyang2022', project='hanyang2022', node='\xec\x9d\xb4\xeb\x8b\xb9-\xe6\x9d\x8e\xe7\x91\xad')
    175                 if not line: break
    176                 if( '#YourData' == line.strip()):
=>  177                         displayData( database, project, node )
    178                 else:
    179                         print line
global displayData = <function displayData>, database = 'hanyang2022', project = 'hanyang2022', node = '\xec\x9d\xb4\xeb\x8b\xb9-\xe6\x9d\x8e\xe7\x91\xad'
 /home/sandbox/public_html/cgi-bin/SemanticWikiPage.py in displayData(database='hanyang2022', project='hanyang2022', node='\xec\x9d\xb4\xeb\x8b\xb9-\xe6\x9d\x8e\xe7\x91\xad')
     61                 
     62         if( count == 0 ):
=>   63                 sayMessage( 3 )
     64                 return  
     65 
sayMessage undefined

<type 'exceptions.NameError'>: global name 'sayMessage' is not defined
      args = ("global name 'sayMessage' is not defined",)
      message = "global name 'sayMessage' is not defined"