From 14437e37710bd93db31c2c268b403cc3c28ddeec Mon Sep 17 00:00:00 2001 From: Guillaume Chazarain Date: Mon, 3 Sep 2012 22:58:08 +0200 Subject: [PATCH] Here we print a string, not bytes. --- iotop/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iotop/ui.py b/iotop/ui.py index 8e36734..4eb92e0 100644 --- a/iotop/ui.py +++ b/iotop/ui.py @@ -436,7 +436,7 @@ class IOTopUI(object): if self.options.quiet <= int(first_time): print(''.join(titles)) for l in lines: - print(l.encode('utf-8')) + print(l) sys.stdout.flush() else: self.win.erase() -- 2.11.4.GIT