You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2020/08/20 22:54:16 UTC

[incubator-ponymail] branch master updated: archiver dump_dir keyword parameter does nothing

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.git


The following commit(s) were added to refs/heads/master by this push:
     new 41d1691  archiver dump_dir keyword parameter does nothing
41d1691 is described below

commit 41d1691e8819e1f7ddca484bf0844dbc07ab5b62
Author: Sebb <se...@apache.org>
AuthorDate: Thu Aug 20 23:54:06 2020 +0100

    archiver dump_dir keyword parameter does nothing
    
    This fixes #520
---
 tools/archiver.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/archiver.py b/tools/archiver.py
index dfd5b26..e5f151b 100755
--- a/tools/archiver.py
+++ b/tools/archiver.py
@@ -622,7 +622,7 @@ def main():
         # Also eliminates: 'Undecodable raw error response from server:' warning message
         logging.getLogger("elasticsearch").setLevel(logging.ERROR)
 
-    archie = Archiver(generator=args.generator or archiver_generator, parse_html=args.html2text)
+    archie = Archiver(generator=args.generator or archiver_generator, parse_html=args.html2text, dump_dir=args.dump)
     # use binary input so parser can use appropriate charset
     input_stream = sys.stdin.buffer