Fix memory leak in ProgressMeter

This commit is contained in:
prculley 2018-01-08 10:34:11 -06:00 committed by Nick Hall
parent 371a8a8f89
commit fe289da983

View File

@ -314,6 +314,7 @@ class ProgressMeter:
""" """
Close the progress meter Close the progress meter
""" """
del self.__cancel_callback
self.__dialog.destroy() self.__dialog.destroy()
#------------------------------------------------------------------------- #-------------------------------------------------------------------------