Plugin Installer fix (prevent some depreciation warnings)

git-svn-id: http://svn.osgeo.org/qgis/trunk@13087 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
borysiasty 2010-03-19 16:18:22 +00:00
parent 01fc3fb0b1
commit f534fbb491
2 changed files with 3 additions and 3 deletions

View File

@ -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"

View File

@ -587,9 +587,9 @@ class Plugins(QObject):
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