1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 02:00:45 +00:00

target/file_xfer: Fix incorrect method call

This commit is contained in:
Marc Bonnici 2020-07-21 18:08:57 +01:00 committed by setrofim
parent c0f26e536a
commit f2b5f85dab

View File

@ -421,7 +421,7 @@ class Target(object):
if not dst_is_dir(dest):
raise dst_excep('A folder dest is required for multiple matches but destination is a file: {}'.format(dest))
else:
dst_makedirs(dest)
dst_mkdir(dest)
def push(self, source, dest, as_root=False, timeout=None, globbing=False): # pylint: disable=arguments-differ