diff options
| author | bwarsaw | 2000-10-06 20:33:36 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-10-06 20:33:36 +0000 |
| commit | 2e6ee84f8f0128d3aaee55e7cfd6635f77dcda6b (patch) | |
| tree | 5622ecf35cb2e272c90f4c5b429ff6a21173b352 | |
| parent | e033942afd031a5288e71781be52624c57b9c93a (diff) | |
| download | mailman-2e6ee84f8f0128d3aaee55e7cfd6635f77dcda6b.tar.gz mailman-2e6ee84f8f0128d3aaee55e7cfd6635f77dcda6b.tar.zst mailman-2e6ee84f8f0128d3aaee55e7cfd6635f77dcda6b.zip | |
| -rw-r--r-- | Mailman/Handlers/ToDigest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Handlers/ToDigest.py b/Mailman/Handlers/ToDigest.py index 5f1f5e618..ec39d6aa0 100644 --- a/Mailman/Handlers/ToDigest.py +++ b/Mailman/Handlers/ToDigest.py @@ -188,8 +188,9 @@ def inject_digest(mlist, digestfile, topicsfile): def quotemime(text): + # TBD: ug. if not text: - return text + return '' return string.join(string.split(text, MIME_SEPARATOR), MIME_NONSEPARATOR) |
