From 6cd314ded2adf0bdf3cbbaea89ae9d18832e268a Mon Sep 17 00:00:00 2001 From: Nathan Falvey Date: Fri, 27 Feb 2026 23:11:07 +0000 Subject: [PATCH] Add traceback logging for error handling in README rebuild --- update_profile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/update_profile.py b/update_profile.py index cfd9664..75a1817 100644 --- a/update_profile.py +++ b/update_profile.py @@ -1,5 +1,6 @@ import os import requests +import traceback import datetime # --- Configuration --- @@ -124,6 +125,7 @@ def main(): print("README.md rebuilt successfully.") except Exception as e: print(f"Error: {e}") + traceback.print_exc() if __name__ == "__main__": main() \ No newline at end of file