mirror of
https://github.com/open-webui/open-webui.git
synced 2026-08-19 20:21:01 -06:00
61bbb99d9e
* fix: replace bare except with except Exception in main.py * fix: replace bare except with Exception in oauth.py In Python 3, bare 'except:' is discouraged as it catches all SystemExit and KeyboardInterrupt exceptions. Changed to 'except Exception:' to only catch actual exceptions.