plugin installer fix

git-svn-id: http://svn.osgeo.org/qgis/trunk@13090 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
borysiasty 2010-03-19 21:35:23 +00:00
parent ba368c0fcf
commit 0adff9dbb0
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.9"
return "Version 1.0.10"
def description():
return "Downloads and installs QGIS python plugins"

View File

@ -62,8 +62,8 @@ try:
except:
QGIS_VER = QGis.QGIS_VERSION
QGIS_MAJOR_VER = 1
QGIS_14 = (QGIS_VER[2] > 3)
QGIS_15 = (QGIS_VER[2] > 4)
QGIS_14 = (QGIS_VER[2] > "3")
QGIS_15 = (QGIS_VER[2] > "4")