Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[MetaSearch] fix version referencing
  • Loading branch information
tomkralidis committed Mar 31, 2016
1 parent a88fcf1 commit 26ebc83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/MetaSearch/util.py
Expand Up @@ -133,7 +133,7 @@ def get_help_url():
"""return QGIS MetaSearch help documentation link"""

locale_name = QSettings().value('locale/userLocale')[0:2]
version = QGis.QGIS_VERSION[:3]
version = QGis.QGIS_VERSION.rsplit('.', 1)[0]

path = '%s/%s/docs/user_manual/plugins/plugins_metasearch.html' % \
(version, locale_name)
Expand Down

0 comments on commit 26ebc83

Please sign in to comment.