Default to continuedl=True
[youtube-dl] / youtube_dl / downloader / common.py
index ca14d64bc192cd8d783ffe604198ec2b064e2cc9..a0fc5ead06a4e8adba7886d2a4087d28ca9cdbcb 100644 (file)
@@ -318,7 +318,7 @@ class FileDownloader(object):
         )
 
         continuedl_and_exists = (
-            self.params.get('continuedl', False) and
+            self.params.get('continuedl', True) and
             os.path.isfile(encodeFilename(filename)) and
             not self.params.get('nopart', False)
         )