implement svg support

This commit is contained in:
Yannik Schmidt
2021-08-06 19:19:12 +02:00
parent 27c4ae843d
commit 57eb5286a0

View File

@@ -96,7 +96,7 @@ def sendPicture(path):
scaleX = round(float(x2))
pathDebug = path
if path.endswith(".svg")
if path.endswith(".svg"):
return flask.send_from_directory(".", path)
encoding = flask.request.args.get("encoding")