This is an automated email from the ASF dual-hosted git repository.
humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
The following commit(s) were added to refs/heads/master by this push:
new 01b16e5 unshadow
01b16e5 is described below
commit 01b16e5448ee832098ca6cd00350dc93c8b06d39
Author: Daniel Gruno <[email protected]>
AuthorDate: Mon Sep 20 12:05:02 2021 -0500
unshadow
---
tools/import-mbox.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/import-mbox.py b/tools/import-mbox.py
index 93bf392..00e3d6a 100755
--- a/tools/import-mbox.py
+++ b/tools/import-mbox.py
@@ -712,8 +712,8 @@ if re.match(r"https?://", source):
qn += 1
if quickmode and qn >= 2:
break
- for t in dl_threads:
- t.join()
+ for done_dl_t in dl_threads:
+ done_dl_t.join()
# IMAP(S) based import?
elif re.match(r"imaps?://", source):