Remove about path

This commit is contained in:
elpatron68
2024-05-26 13:56:25 +02:00
parent 31dda5f7e8
commit 1f175d108a

8
app.py
View File

@@ -94,10 +94,10 @@ def favicon():
return send_from_directory(os.path.join(app.root_path, 'static'), return send_from_directory(os.path.join(app.root_path, 'static'),
'favicon.ico', mimetype='image/vnd.microsoft.icon') 'favicon.ico', mimetype='image/vnd.microsoft.icon')
@app.route('/about') # @app.route('/about')
def about(): # def about():
return send_from_directory(os.path.join(app.root_path, 'static'), # return send_from_directory(os.path.join(app.root_path, 'static'),
'about.html') # 'about.html')
if __name__ == "__main__": if __name__ == "__main__":
logging.info('Starting erdbeerhannah v1.0.1') logging.info('Starting erdbeerhannah v1.0.1')