From 87a5aa088ce33a1196ff409b76a9ea8233bdc634 Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Wed, 30 Dec 2020 18:41:48 -0500 Subject: New upstream version 1.16.1. --- gallery_dl/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gallery_dl/util.py') diff --git a/gallery_dl/util.py b/gallery_dl/util.py index 4c0d17b..d91d29a 100644 --- a/gallery_dl/util.py +++ b/gallery_dl/util.py @@ -956,7 +956,7 @@ class PathFormat(): class DownloadArchive(): def __init__(self, path, extractor): - con = sqlite3.connect(path) + con = sqlite3.connect(path, timeout=60, check_same_thread=False) con.isolation_level = None self.close = con.close self.cursor = con.cursor() -- cgit v1.2.3