From ea511bcb1947d7c429f0c034553a88dad36218e1 Mon Sep 17 00:00:00 2001 From: Sven Schliesing Date: Mon, 4 Sep 2017 14:28:15 +0200 Subject: [PATCH] Don't deny the ability to create tar-files --- fs/compress.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/compress.py b/fs/compress.py index 0b625df7..e1b367a1 100644 --- a/fs/compress.py +++ b/fs/compress.py @@ -1,7 +1,7 @@ """ This module can compress the contents of a filesystem. -Currently only the Zip format is supported. +Currently zip and tar are supported. """ from __future__ import absolute_import @@ -105,7 +105,7 @@ def write_tar(src_fs, encoding="utf-8", walker=None): """ - Write the contents of a filesystem to a zip file. + Write the contents of a filesystem to a tar file. :param file: Destination file, may be a file name or an open file object.