diff mbox

[09/13] KVM test: kvm_subprocess.py: don't sanitize text before passing it to callbacks

Message ID 1277171545-23003-9-git-send-email-lmr@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Lucas Meneghel Rodrigues June 22, 2010, 1:52 a.m. UTC
None
diff mbox

Patch

diff --git a/client/tests/kvm/kvm_subprocess.py b/client/tests/kvm/kvm_subprocess.py
index 73edc5d..93a8429 100755
--- a/client/tests/kvm/kvm_subprocess.py
+++ b/client/tests/kvm/kvm_subprocess.py
@@ -688,9 +688,7 @@  class kvm_tail(kvm_spawn):
         def print_line(text):
             # Pre-pend prefix and remove trailing whitespace
             text = self.output_prefix + text.rstrip()
-            # Sanitize text
-            text = text.decode("utf-8", "replace")
-            # Pass it to output_func
+            # Pass text to output_func
             try:
                 params = self.output_params + (text,)
                 self.output_func(*params)
@@ -888,7 +886,7 @@  class kvm_expect(kvm_tail):
                 if str.endswith("\n"):
                     str = str[:-1]
                 for line in str.split("\n"):
-                    print_func(line.decode("utf-8", "replace"))
+                    print_func(line)
             data += newdata
 
             done = False