From fb66309e7c073aa774288ff8bebb77440429c63b Mon Sep 17 00:00:00 2001 From: Julianne Swinoga Date: Sun, 6 Apr 2025 16:44:35 -0400 Subject: [PATCH] Change SSD1306 hotpatch from (now deleted...) commit to 4.6.2 tag --- OATFWGUI/gui_logic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OATFWGUI/gui_logic.py b/OATFWGUI/gui_logic.py index f66cefd..820951c 100644 --- a/OATFWGUI/gui_logic.py +++ b/OATFWGUI/gui_logic.py @@ -283,7 +283,7 @@ def patch_line(in_str: str) -> str: log.warning('Hot patching oled-ssd1306 revision!!!') def patch_line(in_str: str) -> str: if bad_ssd_1306_revision_re.search(in_str): - out_str = bad_ssd_1306_revision_re.sub(r'ClutchplateDude/esp8266-oled-ssd1306#4f596c75', in_str) + out_str = bad_ssd_1306_revision_re.sub(r'ClutchplateDude/esp8266-oled-ssd1306#4.6.2', in_str) log.warning(f'Replacing {in_str} with {out_str}') return out_str else: