Skip to content

Commit 9d2da50

Browse files
author
borysiasty
committed
fix #2775
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13742 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 7aae40c commit 9d2da50

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

python/plugins/plugin_installer/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def name():
1515
return "Plugin Installer"
1616

1717
def version():
18-
return "Version 1.0.10"
18+
return "Version 1.0.11"
1919

2020
def description():
2121
return "Downloads and installs QGIS python plugins"

python/plugins/plugin_installer/installer_plugin.py

+3
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ def checkingDone(self):
119119
# ----------------------------------------- #
120120
def unload(self):
121121
""" remove the menu item and notify label """
122+
# kill pending http requests
123+
for key in repositories.all():
124+
repositories.killConnection(key)
122125
if QGIS_MAJOR_VER: # new plugin API
123126
self.iface.pluginMenu().removeAction(self.action)
124127
else: # old plugin API

0 commit comments

Comments
 (0)