From 88a0b9f89778d7612cc3e273f0915d4242c9bbd9 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sun, 14 May 2023 11:17:30 +0200 Subject: [PATCH] Code doesn't work with python 3.9 --- web_view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_view.py b/web_view.py index 239988e..da77416 100755 --- a/web_view.py +++ b/web_view.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3.9 +#!/usr/bin/python3 from flask import (Flask, render_template, request, jsonify, redirect, url_for, g, flash, session, Response, stream_with_context, abort, send_file)