Display correct minimum disk size

This commit is contained in:
Elliot Nunn 2019-01-12 18:32:58 +08:00
parent a5b3a5823d
commit 2d99623911
1 changed files with 1 additions and 1 deletions

View File

@ -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')