Skip to content
Snippets Groups Projects
Commit 5364afc3 authored by Thilo Molitor's avatar Thilo Molitor
Browse files

Make plugin_installer more robust to filepath layout changes

parent 92a05deb
No related branches found
No related tags found
1 merge request!41Improved error messages
[info]
name: Plugin Installer
short_name: plugin_installer
version: 0.13.1
version: 0.14
description: Install and upgrade plugins from ftp
authors: Denis Fomin <fominde@gmail.com>
Yann Leboulanger <asterix@lagaule.org>
......
......@@ -602,7 +602,7 @@ class Ftp(threading.Thread):
# downloading zip file
GLib.idle_add(self.progressbar.set_text,
_('Downloading "%s"') % filename)
full_filename = os.path.join(local_dir, 'plugins', filename)
full_filename = os.path.join(user_dir, filename)
self.buffer_ = io.BytesIO()
try:
self.ftp.retrbinary('RETR %s' % filename, self.handleDownload)
......@@ -610,7 +610,7 @@ class Ftp(threading.Thread):
print (str(e))
with zipfile.ZipFile(self.buffer_) as zip_file:
zip_file.extractall(os.path.join(local_dir, 'plugins'))
zip_file.extractall(os.path.join(user_dir))
self.ftp.quit()
GLib.idle_add(self.window.emit, 'plugin_downloaded', self.remote_dirs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment