Skip to content

Commit 2c395a1

Browse files
committed
Fix #9650
1 parent 01a70e0 commit 2c395a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kitty/window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,7 @@ def desktop_notify(self, osc_code: int, raw_datab: memoryview) -> None:
12511251
try:
12521252
parts = tuple(map(int, raw_data.split(';')))[1:]
12531253
except Exception:
1254-
log_error(f'Ignoring malmormed OSC 9;4 progress report: {raw_data!r}')
1254+
log_error(f'Ignoring malformed OSC 9;4 progress report: {raw_data!r}')
12551255
return
12561256
self.progress.update(*parts[:2])
12571257
if (tab := self.tabref()) is not None:

0 commit comments

Comments
 (0)