removing redundant .flush

This commit is contained in:
Dima Galat
2020-01-07 11:47:25 +11:00
parent d0e594f9db
commit e2810edc8f

View File

@@ -385,8 +385,6 @@ def get_from_cache(
else:
http_get(url, temp_file, proxies=proxies, resume_size=resume_size, user_agent=user_agent)
# we are copying the file before closing it, so flush to avoid truncation
temp_file.flush()
logger.info("storing %s in cache at %s", url, cache_path)
os.rename(temp_file.name, cache_path)