1
0

Aggiustato piccolo typo.

This commit is contained in:
Emiliano Vavassori 2022-03-30 00:12:15 +02:00
parent 8d8f2b6dc4
commit 8c630cbc56

View File

@ -127,7 +127,7 @@ class Build(object):
fullpath_arr = self.storage_path.split('/') fullpath_arr = self.storage_path.split('/')
# Joining relative path only if it is not null # Joining relative path only if it is not null
if len(self.relative_path) > 0: 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)) self.full_path = re.sub(r"/+", '/', str.join('/', fullpath_arr))
def download(self, download_path): def download(self, download_path):