On 26 July 2016 at 08:39, <mariano.lopez@linux.intel.com> wrote:
+def oeqa_copy(src, dst):
+ """
+ Copy files and symlinks trying to preserve metadata.
+ """
+
+ shutil.copy2(src, dst, follow_symlinks=False)
Why not just use shutil directly instead of having a wrapper function?
Ross