Fix missing render_template import in web.py

- Add render_template to Flask imports to fix NameError
parent 7a0036b8
......@@ -19,7 +19,7 @@ Web interface process for Video AI.
Serves the web UI for analysis and training.
"""
from flask import Flask, request, render_template_string, send_from_directory, redirect, url_for, flash, session, make_response
from flask import Flask, request, render_template, render_template_string, send_from_directory, redirect, url_for, flash, session, make_response
import os
import json
import uuid
......
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