Commit d8765ac3 authored by Your Name's avatar Your Name

Fix UnboundLocalError for os module in --list-cached-models

The local import of os inside the HTTPS block caused Python to treat os as a local variable throughout the main() function.
parent dd4dfff4
......@@ -5812,7 +5812,6 @@ def main():
# Run server with or without HTTPS
if args.https:
import ssl
import os
# Determine SSL context
ssl_keyfile = None
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment