From 22e1d761027501bfa59b92776cf1c13eef3a0004 Mon Sep 17 00:00:00 2001 From: Priyansh Date: Thu, 9 Dec 2021 02:50:26 -0500 Subject: Changing compressor message --- zipper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipper.py b/zipper.py index bc5ada7..7e5b476 100644 --- a/zipper.py +++ b/zipper.py @@ -9,6 +9,6 @@ if exists(filename_out): remove(filename_out) with open(filename_in, mode="rb") as fin, open(filename_out, mode="wb") as fout: data = fin.read() - print("Compressing Pickle File for Version Control...") + print("Compressing Pickle File...") compressed_data = zlib.compress(data, zlib.Z_BEST_COMPRESSION) fout.write(compressed_data) \ No newline at end of file -- cgit v1.2.3