Xpra: Ticket #1982: log format error in server_util.py

there's an error in the log format on line 295 of server_util.py in get_uinput_device_path(device):

    except Exception as e:
        log.error("Error: cannot query uinput device path:")
        log.error(" %", e)
    return None


Fri, 12 Oct 2018 09:19:11 GMT - Antoine Martin: owner, milestone changed

I don't see the error. What's the message that comes up?


Fri, 12 Oct 2018 13:26:34 GMT - facboy:

it complains about ValueError saying the format is invalid.

it should be

log.error(" %s", e)


Fri, 12 Oct 2018 13:39:08 GMT - Antoine Martin: status changed; resolution set

Thanks, applied in r20666.


Sat, 23 Jan 2021 05:38:58 GMT - migration script:

this ticket has been moved to: https://github.com/Xpra-org/xpra/issues/1982