Skip to content

Commit b1db96b

Browse files
committed
[plugin manager] Call abort before disconnecting finished
1 parent e4c85cd commit b1db96b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyplugin_installer/installer_data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,8 @@ def fetchingInProgress(self):
353353
def killConnection(self, key):
354354
""" kill the fetching on demand """
355355
if self.mRepositories[key]["state"] == 1 and self.mRepositories[key]["xmlData"] and self.mRepositories[key]["xmlData"].isRunning():
356-
self.mRepositories[key]["xmlData"].finished.disconnect()
357356
self.mRepositories[key]["xmlData"].abort()
357+
self.mRepositories[key]["xmlData"].finished.disconnect()
358358

359359
# ----------------------------------------- #
360360
def xmlDownloaded(self):

0 commit comments

Comments
 (0)