qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

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.py | 2+-
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