Skip to content

Commit

Permalink
py3k strings byte us again
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@17507 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Nov 26, 2017
1 parent 0f89702 commit 004b15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/ui_client_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2872,7 +2872,7 @@ def _process_clipboard_enabled_status(self, packet):
clipboard_enabled, reason = packet[1:3]
if self.clipboard_enabled!=clipboard_enabled:
clipboardlog.info("clipboard toggled to %s by the server, reason given:", ["off", "on"][int(clipboard_enabled)])
clipboardlog.info(" %s", reason)
clipboardlog.info(" %s", bytestostr(reason))
self.clipboard_enabled = bool(clipboard_enabled)
self.emit("clipboard-toggled")

Expand Down

0 comments on commit 004b15d

Please sign in to comment.