1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 10:11:17 +00:00

framework/getters: Fix missing return in Filer Getter

This commit is contained in:
Marc Bonnici 2018-01-05 15:51:48 +00:00 committed by setrofim
parent 58131c1a6d
commit bd9189f26a

View File

@ -363,3 +363,4 @@ class Filer(ResourceGetter):
local_full_path = os.path.join(_d(local_path), os.path.basename(result))
self.logger.debug('cp {} {}'.format(result, local_full_path))
shutil.copy(result, local_full_path)
return result