From bae470cd017dcea8fc1f256fa18b6b47e5362282 Mon Sep 17 00:00:00 2001 From: Steven Crawford Date: Fri, 13 Dec 2024 17:19:08 -0600 Subject: [PATCH] updates --- cmg-split-zip-smaller-chunks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmg-split-zip-smaller-chunks.py b/cmg-split-zip-smaller-chunks.py index b740363..4e02a54 100755 --- a/cmg-split-zip-smaller-chunks.py +++ b/cmg-split-zip-smaller-chunks.py @@ -34,7 +34,7 @@ def can_float(str): def get_max_size(): while True: - mx_group_size = input("Enter the maximum (in GB) zipped file size (2 is default): ").strip() or "2" + mx_group_size = input("Enter the maximum (in GB) zipped file size (1.7 is default): ").strip() or "1.7" if can_float(mx_group_size): return float(mx_group_size) else: