fix(startup): remove redundant traceback import causing UnboundLocalError

Remove redundant 'import traceback' statement inside exception handler
in docker/start-fixed.py. The traceback module is already imported at
the top of the file, and the local import was causing Python to treat
it as a local variable, leading to UnboundLocalError when the exception
handler didn't execute.
This commit is contained in:
Dries Peeters
2026-01-04 04:34:58 +01:00
parent a24d515247
commit 89ec9149f8
-1
View File
@@ -348,7 +348,6 @@ def run_migrations():
except Exception as e:
log(f"Post-migration verification failed: {e}", "ERROR")
import traceback
traceback.print_exc()
return None