This commit is contained in:
Kovid Goyal
2026-03-12 18:03:53 +05:30
parent 01a70e06c4
commit 2c395a1ef9

View File

@@ -1251,7 +1251,7 @@ class Window:
try:
parts = tuple(map(int, raw_data.split(';')))[1:]
except Exception:
log_error(f'Ignoring malmormed OSC 9;4 progress report: {raw_data!r}')
log_error(f'Ignoring malformed OSC 9;4 progress report: {raw_data!r}')
return
self.progress.update(*parts[:2])
if (tab := self.tabref()) is not None: