This commit is contained in:
chimchooree
2024-02-18 14:37:04 -06:00
parent d3014e95d0
commit 105162c1dd
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -429,7 +429,7 @@ def serve_xml(filename):
return static_file(filename, root='static/xml', mimetype='text/xml') return static_file(filename, root='static/xml', mimetype='text/xml')
# Downloads # Downloads
@route('/download/dl/<filename:path>') @route('/download/<filename:path>')
def download(filename): def download(filename):
return static_file(filename, root='static/extra', download=filename) return static_file(filename, root='static/extra', download=filename)