diff --git a/xpra/client/mixins/clipboard.py b/xpra/client/mixins/clipboard.py index 74cf03bafc..47e64d776a 100644 --- a/xpra/client/mixins/clipboard.py +++ b/xpra/client/mixins/clipboard.py @@ -15,7 +15,6 @@ from xpra.net import compression from xpra.scripts.config import FALSE_OPTIONS, TRUE_OPTIONS from xpra.util.objects import typedict -from xpra.util.system import is_Wayland from xpra.log import Logger log = Logger("clipboard") @@ -153,8 +152,6 @@ def process_ui_capabilities(self, caps: typedict) -> None: ch = self.make_clipboard_helper() if not ch: log.warn("Warning: no clipboard support") - if is_Wayland(): - log.warn(" (wayland display)") self.clipboard_helper = ch self.clipboard_enabled = ch is not None log("clipboard helper=%s", ch)