From 6076e838eca9f4e9adb8b3aa1469deeda217c29c Mon Sep 17 00:00:00 2001 From: Dmitry Kovtun Date: Fri, 24 May 2024 14:09:52 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A0=D0=B5=D0=B0=D0=BB=D0=B8=D0=B7=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0=D0=BD=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=BE?= =?UTF-8?q?=D0=BD=D0=B0=D0=BB=20=D0=BF=D0=BE=20=D0=B4=D0=BE=D0=B1=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D1=8E=20ou=20=D0=BA=D0=BE=D0=BC?= =?UTF-8?q?=D0=BF=D1=8C=D1=8E=D1=82=D0=B5=D1=80=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- create_ou_branch.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/create_ou_branch.py b/create_ou_branch.py index 6681141..8aa5fe0 100644 --- a/create_ou_branch.py +++ b/create_ou_branch.py @@ -137,6 +137,9 @@ if __name__ == "__main__": date_file = manager.open_csv_file(PATH_CSV) if date_file is not None: ou_add_list = [ i[5] for i in date_file] + ou_comp = [i[10] for i in date_file] logging.info("run create ou") - manager.creat_branch_ou(ou_add_list)# Создаст структуру OU + # manager.creat_branch_ou(ou_add_list)# Создаст структуру OU + manager.creat_branch_ou(ou_add_list) + manager.creat_branch_ou(ou_comp) logging.info("> END <")