-comment out unused function in pypo-fetch
This commit is contained in:
parent
067cd1280a
commit
4d96a16cbe
|
@ -529,16 +529,16 @@ class PypoFetch(Thread):
|
||||||
self.logger.error("Could not copy from %s to %s" % (src, dst))
|
self.logger.error("Could not copy from %s to %s" % (src, dst))
|
||||||
|
|
||||||
|
|
||||||
|
"""
|
||||||
def download_file(self, media_item, 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):
|
if os.path.isfile(dst):
|
||||||
pass
|
pass
|
||||||
#self.logger.debug("file already in cache: %s", dst)
|
#self.logger.debug("file already in cache: %s", dst)
|
||||||
else:
|
else:
|
||||||
self.logger.debug("try to download %s", media_item['uri'])
|
self.logger.debug("try to download %s", media_item['uri'])
|
||||||
self.api_client.get_media(media_item['uri'], dst)
|
self.api_client.get_media(media_item['uri'], dst)
|
||||||
|
"""
|
||||||
|
|
||||||
def cleanup(self, media):
|
def cleanup(self, media):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue