fix: remove warning for folder already exists in downloader

Nothing is wrong with the folder already existing -- silently ignore and move on. Might still have other files inside that haven't been downloaded yet.
This commit is contained in:
normalizedwater546 2024-09-22 01:00:06 +00:00
parent 4bfe104714
commit 497eb6fe50

View File

@ -135,9 +135,6 @@ class Downloader(Singleton):
except EnvironmentError as e:
logger.critical(str(e))
else:
logger.warning(f'Path "{folder}" already exist.')
if os.getenv('DEBUG', None) == 'NODOWNLOAD':
# Assuming we want to continue with rest of process?
return True