--> -->
 
 
UnboundLocalError
Python 3.6.9: /usr/bin/python3
Mon Mar 27 09:12:47 2023

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/cryan/secure_html/generallistall.py in <module>()
     58 
     59 myConnection = mysql.connector.connect( host=hostname, user=username, passwd=password, db=database )
=>   60 databasedata,category,pagepromo,headerimage = doQuery( myConnection )
     61 myConnection.close()
     62 
databasedata undefined, category undefined, pagepromo undefined, headerimage undefined, doQuery = <function doQuery>, myConnection = <mysql.connector.connection_cext.CMySQLConnection object>
 /home/cryan/secure_html/generallistall.py in doQuery(conn=<mysql.connector.connection_cext.CMySQLConnection object>)
     54                         promourl = row[10]
     55                         headerimage = row[10]
=>   56         return content,category,pagepromo,headerimage;    
     57 
     58 
content = '', category undefined, pagepromo undefined, headerimage undefined

UnboundLocalError: local variable 'category' referenced before assignment
      args = ("local variable 'category' referenced before assignment",)
      with_traceback = <built-in method with_traceback of UnboundLocalError object>