From 4f76a567f6d10e2b9bf57d153720d4e43c7b011d Mon Sep 17 00:00:00 2001 From: Przemek Wirkus Date: Tue, 28 Oct 2014 11:29:56 +0000 Subject: [PATCH] Host test plugins: Added extra line for error printing in mbed copy plugin. For readability reasons --- .../host_tests/host_tests_plugins/module_copy_mbed.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workspace_tools/host_tests/host_tests_plugins/module_copy_mbed.py b/workspace_tools/host_tests/host_tests_plugins/module_copy_mbed.py index f0d050b6a0..dc5d8fd9dd 100644 --- a/workspace_tools/host_tests/host_tests_plugins/module_copy_mbed.py +++ b/workspace_tools/host_tests/host_tests_plugins/module_copy_mbed.py @@ -32,7 +32,8 @@ class HostTestPluginCopyMethod_Mbed(HostTestPluginBase): try: copy(image_path, destination_disk) except Exception, e: - self.print_plugin_error("shutil.copy(%s, %s) failed: %s"% (image_path, destination_disk, str(e))) + self.print_plugin_error("shutil.copy('%s', '%s')"% (image_path, destination_disk)) + self.print_plugin_error("Error: %s"% str(e)) result = False return result