From 227eb8a9fc0d1fdf676498f2646107a937d5870e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B8=D1=80=D0=B5=D1=86=D0=BA=D0=B8=D0=B9=20=D0=9C?= =?UTF-8?q?=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Fri, 26 Mar 2021 09:07:16 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=20=D0=BE=D0=BA=D1=80=D1=83=D0=B3=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D0=BF=D1=80=D0=B8=20=D0=BF=D1=80=D0=BE=D0=B2?= =?UTF-8?q?=D0=B5=D1=80=D0=BA=D0=B5=20=D1=80=D0=B0=D0=B7=D0=BC=D0=B5=D1=80?= =?UTF-8?q?=D0=B0=20bios=5Fboot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pym/install/variables/disk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/install/variables/disk.py b/pym/install/variables/disk.py index bff3c17..cc3aa6e 100644 --- a/pym/install/variables/disk.py +++ b/pym/install/variables/disk.py @@ -2274,7 +2274,7 @@ class VariableOsInstallMbr(LocationHelper, Variable): # проверка размера EF02 при установке на btrfs elif useBtrfs: if (bbsize.isdigit() and bios_grub_size.isdigit() and - int(bbsize) < int(bios_grub_size)): + round(float(bbsize)) < round(float(bios_grub_size))): raise VariableError( _("Your boot device must have a BIOS Boot " "partition ({minsize})").format(