From e0637934ace26b376ba9ebb611afe0fbf90d9e26 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Thu, 27 Jun 2013 13:07:56 +0000 Subject: [PATCH] 6841: Fix RTL text style bug svn: r22616 --- src/plugins/Records.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/Records.py b/src/plugins/Records.py index 1be771b70..ed4d974af 100644 --- a/src/plugins/Records.py +++ b/src/plugins/Records.py @@ -306,7 +306,7 @@ def _record(lowest, highest, value, text, handle_type, handle): def _output(value): - return str(value) + return unicode(value) #------------------------------------------------------------------------