I am getting error after running code with below class. Clueless right now, please help
from __future__ import division
from threading import Thread
from pubsub import pub
import os
import glob
########################################################################
class process_csv_thread(Thread):
"""Test Worker Thread Class."""
An answer, just for the record. (Bare in mind, I'm no
Thread
wizard.)If the
Thread
is not stopped and you don't unsubscribe from the messages, there is the possibility of messages being received from a still runningThread
, which will attempt to update a widget that no longer exists.I've adapted your code to include a
Stop
method for theThread
.I also
join
the thread to ensure that it has terminated, before destroying the GUI.Obviously, this
Thread
is simply spinning, you would need to ensure that a workingThread
has a means of checking therunning
variable.Thread code
process_csv_class.py
Main program:
config_setup.ini
file