Skip to content

Commit

Permalink
Plugin Installer fix (prevent some depreciation warnings)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13087 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
borysiasty committed Mar 19, 2010
1 parent d98b6ae commit 147f5d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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.8"
return "Version 1.0.9"

def description():
return "Downloads and installs QGIS python plugins"
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/plugin_installer/installer_data.py
Expand Up @@ -587,9 +587,9 @@ def getInstalledPlugin(self, key, readOnly):
try:
exec ("%s.classFactory(iface)" % key)
except Exception, error:
error = error.message
error = unicode(error.args[0])
except Exception, error:
error = error.message
error = unicode(error.args[0])

if not nam:
nam = key
Expand Down

0 comments on commit 147f5d0

Please sign in to comment.