Host test plugins: Added extra line for error printing in mbed copy plugin. For readability reasons

pull/719/head
Przemek Wirkus 2014-10-28 11:29:56 +00:00
parent 4d8dfed27f
commit 4f76a567f6
1 changed files with 2 additions and 1 deletions

View File

@ -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