Index: /trunk/src/VBox/ValidationKit/testdriver/reporter.py
===================================================================
--- /trunk/src/VBox/ValidationKit/testdriver/reporter.py	(revision 70571)
+++ /trunk/src/VBox/ValidationKit/testdriver/reporter.py	(revision 70572)
@@ -745,4 +745,8 @@
             except: pass;
 
+        # Make sure it's a string which encoding we grok.
+        if sys.version_info[0] >= 3 and hasattr(sRspBody, 'decode'):
+            sRspBody = sRspBody.decode('utf-8', 'ignore');
+
         # Check the content type.
         sContentType = oResponse.getheader('Content-Type');
