From 50b1dfc746382f854f384a81abbcefbc0509a531 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 16 Sep 2020 22:30:13 +0530 Subject: [PATCH] Fix #2968 --- kitty/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/screen.c b/kitty/screen.c index bf32d9238..7347e8b58 100644 --- a/kitty/screen.c +++ b/kitty/screen.c @@ -1968,7 +1968,7 @@ screen_open_url(Screen *self) { } bool found = false; if (PyUnicode_Check(text)) { - CALLBACK("open_url", "sH", text, 0); + CALLBACK("open_url", "OH", text, 0); found = true; } Py_CLEAR(text);