Compare commits

..

1 Commits

Author SHA1 Message Date
Simon Bruder cbf8496687
Add odrive-proxy script 2020-07-26 12:44:49 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ def help():
@app.route("/<string:uuid>/<string:password>/")
def index(uuid, password):
res = r'<!DOCTYPE html><html><head><title>Index of /{uuid}</title><meta charset="utf-8"></head><body><h1>Index of /{uuid}</h1><pre>'
res = f'<!DOCTYPE html><html><head><title>Index of /{uuid}</title><meta charset="utf-8"></head><body><h1>Index of /{uuid}</h1><pre>'
for name, url in get_files(uuid, password).items():
res += f'<a href="{name}">{name}</a>\n'
res += "</pre></body></html>"