From ea78347f554775578d88e8cdc31a2f39698ff2ec Mon Sep 17 00:00:00 2001 From: sitisll Date: Wed, 10 May 2023 12:43:51 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BF=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=8E=20create=5F?= =?UTF-8?q?dir,=20=D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D0=B5=D1=82=20=D0=B2?= =?UTF-8?q?=D1=81=D0=B5=20=D0=BF=D0=B0=D0=BF=D0=BA=D0=B8=20=D0=BF=D0=BE=20?= =?UTF-8?q?=D1=83=D0=BA=D0=B0=D0=B7=D0=BD=D0=BD=D0=BE=D0=BC=D1=83=20=D0=BF?= =?UTF-8?q?=D1=83=D1=82=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hlna.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hlna.py b/hlna.py index 1ee1f4b..148c021 100755 --- a/hlna.py +++ b/hlna.py @@ -33,7 +33,7 @@ def hlna(): def create_dir(directory): """Проверка и создание директории""" if not os.path.exists(directory): - os.mkdir(directory) + os.makedirs(directory) create_dir(dir_server)