From 71edb785d2ab168bb81fed70f876e35d1eb8988c Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Mon, 21 Mar 2022 01:11:17 +0100 Subject: [PATCH] Correzione opzione exist_ok su makedirs() --- loaih/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loaih/__init__.py b/loaih/__init__.py index be281dc..4052994 100644 --- a/loaih/__init__.py +++ b/loaih/__init__.py @@ -79,7 +79,7 @@ class Build(object): tarballs = self.tarballs[arch] maintarball = tarballs[0] - os.makedirs(self.download_path, existok = True) + os.makedirs(self.download_path, exist_ok = True) os.chdir(self.download_path) for archive in tarballs: # If the archive is already there, do not do anything.