This commit is contained in:
2024-12-13 17:19:08 -06:00
parent 108647ded6
commit bae470cd01

View File

@@ -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: