From dea0070ac4c67b208a4b2ab3915ed75b813c2251 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Thu, 17 May 2012 16:22:37 +0000 Subject: [PATCH] PluginDownloader: Remove debug output. --- plugins/PluginDownloader/plugin.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/PluginDownloader/plugin.py b/plugins/PluginDownloader/plugin.py index a893646bd..8812f6805 100644 --- a/plugins/PluginDownloader/plugin.py +++ b/plugins/PluginDownloader/plugin.py @@ -172,9 +172,7 @@ class GithubRepository(GitRepository): archive = self._download(plugin) prefix = archive.getnames()[0] dirname = ''.join((self._path, plugin)) - print repr(prefix + dirname + '/README.txt') for file in archive.getmembers(): - print repr(file) if file.name == prefix + dirname + '/README.txt': extractedFile = archive.extractfile(file) return extractedFile.read()