mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
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:
parent
01fc3fb0b1
commit
f534fbb491
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user