This commit is contained in:
Nikolas
2024-11-22 09:49:02 -08:00
parent 12b1fb3bd2
commit 0b429a5645

View File

@@ -57,5 +57,5 @@ def read_resolution() -> tuple[int]:
w = result2.group(1)
if int(h) > 0 and int(w) > 0:
break
logging.info(f"Current resolution is %dx%d", w, h)
logging.info("Current resolution is %dx%d", w, h)
return (h, w)