Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Create directory for python plugins if it doesn't exist
(otherwise the plugin extraction will fail)


git-svn-id: http://svn.osgeo.org/qgis/trunk@7868 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed Jan 8, 2008
1 parent cfeccb4 commit 2620838
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/plugins/plugin_installer/qgis_plugins.py
Expand Up @@ -132,6 +132,10 @@ def install_plugin(plugin, plugindir, repos):
return (False, "Failed to download file to %s" % outfile)
return

# make sure that the parent directory exists
if not os.path.exists(plugindir):
os.makedirs(plugindir)

print "Extracting to plugin directory (%s)" % plugindir
try:
un = unzip()
Expand Down

0 comments on commit 2620838

Please sign in to comment.