We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c84b072 commit 4fbdf6eCopy full SHA for 4fbdf6e
2 files changed
src/diffpy/pdfgui/control/fitting.py
@@ -553,7 +553,7 @@ def isThreadRunning(self):
553
554
return: True if running, False otherwise
555
"""
556
- return self.thread is not None and self.thread.isAlive()
+ return self.thread is not None and self.thread.is_alive()
557
558
def join(self):
559
"""wait for current fitting to finish"""
src/diffpy/pdfgui/control/pdfguicontrol.py
@@ -159,7 +159,7 @@ def exit(self):
159
"""exit when program finished
160
161
self.close()
162
- if self.queueManager.isAlive():
+ if self.queueManager.is_alive():
163
self.queueManager.running = False
164
165
def newFitting(self, name, position=None):
0 commit comments