Skip to content

Commit

Permalink
plugin installer fix
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13090 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
borysiasty committed Mar 19, 2010
1 parent 1219b4b commit 16a15c9
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.9"
return "Version 1.0.10"

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 @@ -62,8 +62,8 @@
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")



Expand Down

0 comments on commit 16a15c9

Please sign in to comment.