From c15632dc1cc5109e268df4f361e36720fab3cf77 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 13 Jan 2017 02:55:28 +0100 Subject: Fix property reading for new version of python-xlib MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- examples/compact | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/compact b/examples/compact index 7e08663..9c43d36 100644 --- a/examples/compact +++ b/examples/compact @@ -277,9 +277,9 @@ class MyXMonad(Entry): UTF8_STRING = display.intern_atom('UTF8_STRING') _XMONAD_LOG = display.intern_atom('_XMONAD_LOG') _NET_DESKTOP_NAMES = display.intern_atom('_NET_DESKTOP_NAMES') - xmonad_log = display.screen().root.get_full_property(_XMONAD_LOG, UTF8_STRING).value + xmonad_log = display.screen().root.get_full_property(_XMONAD_LOG, UTF8_STRING).value.decode('utf-8', 'replace') xmonad_log = xmonad_log.split(' : ') - net_desktop_names = display.screen().root.get_full_property(_NET_DESKTOP_NAMES, UTF8_STRING).value + net_desktop_names = display.screen().root.get_full_property(_NET_DESKTOP_NAMES, UTF8_STRING).value.decode('utf-8', 'replace') net_desktop_names = net_desktop_names[:-1].split('\0') ws = 0 ws_hit = False -- cgit v1.2.3-70-g09d2