This is an automated email from the ASF dual-hosted git repository.
sebb 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 011f16a Doc tweak
011f16a is described below
commit 011f16a4a1bd6d9fabc7bbdc82c1c9e5c91394f9
Author: Sebb <[email protected]>
AuthorDate: Sun Nov 28 00:04:53 2021 +0000
Doc tweak
---
tools/archiver.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/archiver.py b/tools/archiver.py
index 6d3c99c..dc411f0 100755
--- a/tools/archiver.py
+++ b/tools/archiver.py
@@ -93,7 +93,7 @@ if config.has_option("mailman", "plugin"):
aURL = config.get("archiver", "baseurl")
# Get/Set email parsing policy (primarily ascii/7bit vs native utf8)
-# (may be used by import-mbox)
+# (used by import-mbox)
policy_choice = config.get("archiver", "policy", fallback="default")
policy: typing.Any
if policy_choice == "compat32":
@@ -101,7 +101,7 @@ if policy_choice == "compat32":
elif policy_choice == "smtputf8":
policy = email.policy.SMTPUTF8 # 8bit/unicode lines
else:
- policy = email.policy.default # Default (8bit) lines in Python >=3.3
+ policy = email.policy.default # Default (8bit) lines in Python >=3.3
def encode_base64(buff: bytes) -> str:
""" Convert bytes to base64 as text string (no newlines) """