PluginDownloader: Remove debug output.

This commit is contained in:
Valentin Lorentz 2012-05-17 16:22:37 +00:00
parent 949df233d0
commit dea0070ac4
1 changed files with 0 additions and 2 deletions

View File

@ -172,9 +172,7 @@ class GithubRepository(GitRepository):
archive = self._download(plugin) archive = self._download(plugin)
prefix = archive.getnames()[0] prefix = archive.getnames()[0]
dirname = ''.join((self._path, plugin)) dirname = ''.join((self._path, plugin))
print repr(prefix + dirname + '/README.txt')
for file in archive.getmembers(): for file in archive.getmembers():
print repr(file)
if file.name == prefix + dirname + '/README.txt': if file.name == prefix + dirname + '/README.txt':
extractedFile = archive.extractfile(file) extractedFile = archive.extractfile(file)
return extractedFile.read() return extractedFile.read()