aboutsummaryrefslogtreecommitdiff
path: root/hex_zero.py
diff options
context:
space:
mode:
Diffstat (limited to 'hex_zero.py')
-rwxr-xr-xhex_zero.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/hex_zero.py b/hex_zero.py
index b534a51..1f3c2ab 100755
--- a/hex_zero.py
+++ b/hex_zero.py
@@ -389,6 +389,7 @@ def fhost():
stored_ip_address = request.remote_addr
except:
stored_ip_address = request.remote_addr
+ # future use: request.files["file"].filename
out = store_file(request.files["file"], stored_ip_address)
elif "url" in request.form:
out = store_url(request.form["url"], request.remote_addr)
bgstack15