From f334049b58c9ac06d7d8ee3d416b637eb6609e23 Mon Sep 17 00:00:00 2001 From: Vadim Lebedev Date: Mon, 8 Aug 2022 19:39:58 +0200 Subject: [PATCH] More Fixes for Python2 compatiblity --- libarchive/zip.py | 1 - 1 file changed, 1 deletion(-) diff --git a/libarchive/zip.py b/libarchive/zip.py index 9e5d433..62fe4c1 100644 --- a/libarchive/zip.py +++ b/libarchive/zip.py @@ -100,7 +100,6 @@ class ZipFile(SeekableArchive): if not names: names = self.namelist() if names: - print(f"Extracting {names} files.") for name in names: self.extract(name, path)