From 5b2c0836be1ede8dcf0b0cdbd925b2db5bda2174 Mon Sep 17 00:00:00 2001 From: Vitaly the Alpaca Date: Sat, 8 Jun 2024 12:25:42 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=B5=D0=BE=D0=B1=D1=80=D0=B0?= =?UTF-8?q?=D0=B7=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20OPI=20->=20OInt=20?= =?UTF-8?q?(workflow)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/en/cli/tools/Modules/Утилиты.os | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/en/cli/tools/Modules/Утилиты.os b/src/en/cli/tools/Modules/Утилиты.os index 241df425d..1752b195b 100644 --- a/src/en/cli/tools/Modules/Утилиты.os +++ b/src/en/cli/tools/Modules/Утилиты.os @@ -48,7 +48,7 @@ Function ConvertBase64ToBinary(Val Entry) Export InputFile = New File(Entry); - If Not InputFile.Exists() Then + If Not InputFile.Exist() Then Raise("Input File Not Found!"); EndIf; @@ -177,7 +177,7 @@ Procedure GetCollection(Value, Val Encoding) File = New File(Value); TextDocument = New TextDocument(); - If File.Exists() Then + If File.Exist() Then TextDocument.Read(Value, Encoding); Value = TextDocument.GetText();