logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 3ddd20cf51a054dc6c5ee6179f6ebec7efad7628
parent c43667fa74824b1d1d5c32777cae1d8dde7bd88d
Author: QMK Bot <hello@qmk.fm>
Date:   Sun, 16 Jun 2024 09:53:32 +0000

Merge remote-tracking branch 'origin/master' into develop

Diffstat:

Mlib/python/qmk/util.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/python/qmk/util.py b/lib/python/qmk/util.py @@ -15,7 +15,7 @@ def maybe_exit(rc): if maybe_exit_should_exit: sys.exit(rc) if maybe_exit_reraise: - e = sys.exception() + e = sys.exc_info()[1] if e: raise e