Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Fomin <fominde@gmail.com>2013-08-28 12:12:52 +0400
committerDenis Fomin <fominde@gmail.com>2013-08-28 12:12:52 +0400
commitde5f7f25114b7fd80821b975caf0ce255c0e9c8d (patch)
tree3dd0cdb1d2316319196d18ad4dccf345a6582e0c
parent661ff5fd4c0e0e49fd31e2114d2076e21d8e3b1e (diff)
Split long line
-rw-r--r--plugin_installer/plugin_installer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin_installer/plugin_installer.py b/plugin_installer/plugin_installer.py
index 31cd36c..f9d1194 100644
--- a/plugin_installer/plugin_installer.py
+++ b/plugin_installer/plugin_installer.py
@@ -506,7 +506,8 @@ class Ftp(threading.Thread):
if not self.remote_dirs:
gobject.idle_add(self.progressbar.set_text,
_('Scan files on the server'))
- self.ftp.retrbinary('RETR manifests_images.zip', self.handleDownload)
+ self.ftp.retrbinary('RETR manifests_images.zip',
+ self.handleDownload)
zip_file = zipfile.ZipFile(self.buffer_)
manifest_list = zip_file.namelist()
progress_step = 1.0 / len(manifest_list)