diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py index f1828d545..d89eec2ef 100644 --- a/youtube_dl/downloader/external.py +++ b/youtube_dl/downloader/external.py @@ -260,7 +260,7 @@ class Aria2pFD(ExternalFD): }) self._hook_progress(status) time.sleep(.5) - return not (download.status == 'complete') + return not download.status == 'complete' class HttpieFD(ExternalFD):