From 8c630cbc560d94a4b11278d3029de361e6d4ee82 Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Wed, 30 Mar 2022 00:12:15 +0200 Subject: [PATCH] Aggiustato piccolo typo. --- loaih/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loaih/__init__.py b/loaih/__init__.py index 55566b9..1fe8873 100644 --- a/loaih/__init__.py +++ b/loaih/__init__.py @@ -127,7 +127,7 @@ class Build(object): fullpath_arr = self.storage_path.split('/') # Joining relative path only if it is not null if len(self.relative_path) > 0: - fullpath_arr.expand(self.relative_path) + fullpath_arr.extend(self.relative_path) self.full_path = re.sub(r"/+", '/', str.join('/', fullpath_arr)) def download(self, download_path):