Skip to content

Commit

Permalink
support for non-ascii characters in path to home directory.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8528 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed May 27, 2008
1 parent 2f0c952 commit c16313b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/plugin_installer/dialog.py
Expand Up @@ -102,7 +102,7 @@ def installPlugin(self):
if not repository:
return
repository_url = str(repository[1])
plugindir = str(QgsApplication.qgisSettingsDirPath()) + "/python/plugins"
plugindir = unicode(QgsApplication.qgisSettingsDirPath(),'utf-8') + "/python/plugins"

QApplication.setOverrideCursor(Qt.WaitCursor)
from qgis_plugins import retrieve_list, install_plugin
Expand Down

0 comments on commit c16313b

Please sign in to comment.