logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 465cbc87de0f9e92663cf4bb1a5e89739dbb5904
parent 6693a30671a5bb690e395cf64c8a0a949123f401
Author: Joel Challis <git@zvecr.com>
Date:   Wed, 30 Oct 2024 11:26:53 +0000

Handle 'MILCInterface' object has no attribute 'log_level' error (#24549)


Diffstat:

Mlib/python/qmk/search.py7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/lib/python/qmk/search.py b/lib/python/qmk/search.py @@ -119,8 +119,11 @@ def filter_help() -> str: def _set_log_level(level): cli.acquire_lock() - old = cli.log_level - cli.log_level = level + try: + old = cli.log_level + cli.log_level = level + except AttributeError: + old = cli.log.level cli.log.setLevel(level) logging.root.setLevel(level) cli.release_lock()