Skip to content

Commit

Permalink
log a visible warning when we don't handle a ClientMessage because we…
Browse files Browse the repository at this point in the history
… only handle format=32

git-svn-id: https://xpra.org/svn/Xpra/trunk@1088 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jul 12, 2012
1 parent d534072 commit aea9939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wimpiggy/lowlevel/bindings.pyx
Expand Up @@ -2013,7 +2013,7 @@ cdef GdkFilterReturn x_event_filter(GdkXEvent * e_gdk,
pyev.format = e.xclient.format
# I am lazy. Add this later if needed for some reason.
if pyev.format != 32:
log("Ignoring ClientMessage with format != 32")
log.warn("FIXME: Ignoring ClientMessage with format != 32")
return GDK_FILTER_CONTINUE
pieces = []
for i in xrange(5):
Expand Down

0 comments on commit aea9939

Please sign in to comment.