Fix Windows issue

This commit is contained in:
AuroraWright
2024-03-08 03:39:44 +01:00
parent 24b80130bf
commit deef365f64

View File

@@ -537,7 +537,7 @@ def run(read_from=None,
:param screen_capture_combo: When reading with screen capture, specifies a combo to wait on for taking a screenshot instead of using the delay. As an example: "<ctrl>+<shift>+s". The list of keys can be found here: https://pynput.readthedocs.io/en/latest/keyboard.html#pynput.keyboard.Key :param screen_capture_combo: When reading with screen capture, specifies a combo to wait on for taking a screenshot instead of using the delay. As an example: "<ctrl>+<shift>+s". The list of keys can be found here: https://pynput.readthedocs.io/en/latest/keyboard.html#pynput.keyboard.Key
""" """
if read_from == 'screencapture' and sys.platform != 'darwin': if read_from == 'screencapture' and sys.platform not in ('darwin', 'win32'):
active_window_name = pywinctl.getActiveWindowTitle() active_window_name = pywinctl.getActiveWindowTitle()
logger.configure(handlers=[{'sink': sys.stderr, 'format': config.get_general('logger_format')}]) logger.configure(handlers=[{'sink': sys.stderr, 'format': config.get_general('logger_format')}])