From: Frank Brehm Date: Thu, 11 May 2017 11:50:17 +0000 (+0200) Subject: Minor changes X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=b49ebdc4566c43e240282e4728cd392e64b6020a;p=pixelpark%2Ftrace-maillog.git Minor changes --- diff --git a/lib/trace_maillog/any_uncompress_file.py b/lib/trace_maillog/any_uncompress_file.py index 3296dbe..964b8f2 100644 --- a/lib/trace_maillog/any_uncompress_file.py +++ b/lib/trace_maillog/any_uncompress_file.py @@ -117,6 +117,13 @@ class AnyUmpressFile(object): self.fh = fh self.compress_type = compress_type + # ------------------------------------------------------------------------- + if HAS_BZIP2: + compression_types['bz2']['supported'] = True + if HAS_LZMA: + compression_types['lzma']['supported'] = True + compression_types['xz']['supported'] = True + # =============================================================================