From e9da46728549f5b18248b5ee290848e611780e94 Mon Sep 17 00:00:00 2001 From: Alexey Loginov Date: Sun, 30 Mar 2014 10:22:59 +0400 Subject: Fix MGA#12882 (use of str() instead of unicode()) --- src/net_monitor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/net_monitor b/src/net_monitor index 1b123d3..7856442 100755 --- a/src/net_monitor +++ b/src/net_monitor @@ -495,7 +495,7 @@ class MonitorGui: value = pretty_size else: value = "%s (%s)" % (pretty_size, pretty_bytes) - self.ifaces[iface][widget].set_text(str(value)) + self.ifaces[iface][widget].set_text(unicode(value)) GObject.timeout_add_seconds(interval, self.update) def show_statistics_dialog(self, widget, iface): -- cgit v1.2.1