From 2d996239118d72c382c6ac07eb5c45faecd08551 Mon Sep 17 00:00:00 2001 From: Elliot Nunn Date: Sat, 12 Jan 2019 18:32:58 +0800 Subject: [PATCH] Display correct minimum disk size --- machfs/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machfs/main.py b/machfs/main.py index 5155f43..5693823 100644 --- a/machfs/main.py +++ b/machfs/main.py @@ -223,7 +223,7 @@ class Volume(AbstractFolder): raise ValueError('align must be multiple of 512') if size < 400 * 1024 or size % 512: - raise ValueError('size must be a multiple of 512b and >= 800K') + raise ValueError('size must be a multiple of 512b and >= 400K') drVN = _encode_name(self.name, 'vol')