From 4d96a16cbe2a9e98c0a084bca8dcf585da633609 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Fri, 16 Mar 2012 20:39:49 -0400 Subject: [PATCH] -comment out unused function in pypo-fetch --- python_apps/pypo/pypofetch.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python_apps/pypo/pypofetch.py b/python_apps/pypo/pypofetch.py index bd441c875..72c896339 100644 --- a/python_apps/pypo/pypofetch.py +++ b/python_apps/pypo/pypofetch.py @@ -529,16 +529,16 @@ class PypoFetch(Thread): self.logger.error("Could not copy from %s to %s" % (src, dst)) + """ def download_file(self, media_item, dst): - """ - Download a file from a remote server and store it in the cache. - """ + #Download a file from a remote server and store it in the cache. if os.path.isfile(dst): pass #self.logger.debug("file already in cache: %s", dst) else: self.logger.debug("try to download %s", media_item['uri']) self.api_client.get_media(media_item['uri'], dst) + """ def cleanup(self, media): """