From 1c104320eb8f082e20e0c690578cdfae4af042a2 Mon Sep 17 00:00:00 2001 From: scifijunkie Date: Wed, 12 Jun 2024 19:47:21 +0000 Subject: [PATCH] addressed the [ERROR] Error: send_file() got an unexpected keyword argument 'path' error --- handshakes-dl.py | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/handshakes-dl.py b/handshakes-dl.py index a531803..38bbe1c 100644 --- a/handshakes-dl.py +++ b/handshakes-dl.py @@ -6,9 +6,7 @@ import glob import pwnagotchi import pwnagotchi.plugins as plugins -from flask import abort -from flask import send_from_directory -from flask import render_template_string +from flask import abort, send_from_directory, render_template_string TEMPLATE = """ {% extends "base.html" %} @@ -37,11 +35,9 @@ TEMPLATE = """ filter.onkeyup = function() { document.body.style.cursor = 'progress'; - var table, tr, tds, td, i, txtValue; - filterVal = filter.value.toUpperCase(); - li = shakeList.getElementsByTagName("li"); - for (i = 0; i < li.length; i++) { - txtValue = li[i].textContent || li[i].innerText; + var li = shakeList.getElementsByTagName("li"); + for (var i = 0; i < li.length; i++) { + var txtValue = li[i].textContent || li[i].innerText; if (txtValue.toUpperCase().indexOf(filterVal) > -1) { li[i].style.display = "list-item"; } else { @@ -50,7 +46,6 @@ TEMPLATE = """ } document.body.style.cursor = 'default'; } - {% endblock %} {% block content %} @@ -58,7 +53,7 @@ TEMPLATE = """ @@ -89,15 +84,14 @@ class HandshakesDL(plugins.Plugin): handshakes = glob.glob(os.path.join("/home/pi", "*.pcap")) handshakes = [os.path.basename(handshake) for handshake in handshakes] return render_template_string(TEMPLATE, - title="Handshakes | " + pwnagotchi.name(), - handshakes=handshakes) - + title="Handshakes | " + pwnagotchi.name(), + handshakes=handshakes) else: directory = "/home/pi" try: file_path = os.path.join(directory, path) logging.info(f"[HandshakesDL] serving {file_path}") - return send_from_directory(directory=directory, path='.', filename=path, as_attachment=True) + return send_from_directory(directory=directory, filename=path, as_attachment=True) except FileNotFoundError: logging.error("File not found") abort(404)