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:
parent
c0f26e536a
commit
f2b5f85dab
@ -421,7 +421,7 @@ class Target(object):
|
|||||||
if not dst_is_dir(dest):
|
if not dst_is_dir(dest):
|
||||||
raise dst_excep('A folder dest is required for multiple matches but destination is a file: {}'.format(dest))
|
raise dst_excep('A folder dest is required for multiple matches but destination is a file: {}'.format(dest))
|
||||||
else:
|
else:
|
||||||
dst_makedirs(dest)
|
dst_mkdir(dest)
|
||||||
|
|
||||||
|
|
||||||
def push(self, source, dest, as_root=False, timeout=None, globbing=False): # pylint: disable=arguments-differ
|
def push(self, source, dest, as_root=False, timeout=None, globbing=False): # pylint: disable=arguments-differ
|
||||||
|
Loading…
x
Reference in New Issue
Block a user