Skip to content

Commit

Permalink
fix #2775
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13742 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
borysiasty committed Jun 17, 2010
1 parent 7aae40c commit 9d2da50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/plugin_installer/__init__.py
Expand Up @@ -15,7 +15,7 @@ def name():
return "Plugin Installer"

def version():
return "Version 1.0.10"
return "Version 1.0.11"

def description():
return "Downloads and installs QGIS python plugins"
Expand Down
3 changes: 3 additions & 0 deletions python/plugins/plugin_installer/installer_plugin.py
Expand Up @@ -119,6 +119,9 @@ def checkingDone(self):
# ----------------------------------------- #
def unload(self):
""" remove the menu item and notify label """
# kill pending http requests
for key in repositories.all():
repositories.killConnection(key)
if QGIS_MAJOR_VER: # new plugin API
self.iface.pluginMenu().removeAction(self.action)
else: # old plugin API
Expand Down

0 comments on commit 9d2da50

Please sign in to comment.