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()