Skip to content

Commit 0adff9d

Browse files
author
borysiasty
committed
plugin installer fix
git-svn-id: http://svn.osgeo.org/qgis/trunk@13090 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent ba368c0 commit 0adff9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

python/plugins/plugin_installer/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def name():
1515
return "Plugin Installer"
1616

1717
def version():
18-
return "Version 1.0.9"
18+
return "Version 1.0.10"
1919

2020
def description():
2121
return "Downloads and installs QGIS python plugins"

python/plugins/plugin_installer/installer_data.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
except:
6363
QGIS_VER = QGis.QGIS_VERSION
6464
QGIS_MAJOR_VER = 1
65-
QGIS_14 = (QGIS_VER[2] > 3)
66-
QGIS_15 = (QGIS_VER[2] > 4)
65+
QGIS_14 = (QGIS_VER[2] > "3")
66+
QGIS_15 = (QGIS_VER[2] > "4")
6767

6868

6969

0 commit comments

Comments
 (0)