From 252396826aa7cbf48582ae0d89ef4a5f0ea73271 Mon Sep 17 00:00:00 2001 From: Dark360 Date: Sun, 22 Mar 2026 08:06:09 +0000 Subject: [PATCH] Update pin-config.py path in warning message To prevent this Current pin assignments do not match the defaults. To replace the current pin config with the new defaults, run: ./pin-config.py --reset-default To see the current pin config, run: ./pin-config.py --echo-current You may safely ignore this warning if the controller is part of a completed filter and you do not intend to make hardware changes. Restarting klipper... pi@mainsailos:~/nevermore-controller $ ./pin-config.py --echo-current -bash: ./pin-config.py: No such file or directory --- tools/update_ota.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/update_ota.py b/tools/update_ota.py index fc98aa7..8b6ec0d 100755 --- a/tools/update_ota.py +++ b/tools/update_ota.py @@ -397,8 +397,8 @@ async def attempt(transport: Transport) -> None: print("Current pin assignments do not match the defaults.") print( - " To replace the current pin config with the new defaults, run: ./pin-config.py --reset-default\n" - " To see the current pin config, run: ./pin-config.py --echo-current\n" + " To replace the current pin config with the new defaults, run: ./tools/pin-config.py --reset-default\n" + " To see the current pin config, run: ./tools/pin-config.py --echo-current\n" "\n" "You may safely ignore this warning if the controller is part of a completed filter\n" "and you do not intend to make hardware changes."