From 129c56c1d432be53e6d3d25e7f94822267440e77 Mon Sep 17 00:00:00 2001 From: Solderpunk Date: Thu, 3 Sep 2020 21:21:04 +0200 Subject: [PATCH] Fix another hasty cache hack bug. --- av98.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/av98.py b/av98.py index 1df3a7d..f74b532 100755 --- a/av98.py +++ b/av98.py @@ -528,10 +528,10 @@ you'll be able to transparently follow links to Gopherspace!""") # Maintain cache and log if self.options["cache"]: - self._add_to_cache(gi.url, mime, tmpf.name) + self._add_to_cache(gi.url, mime, self.tmp_filename) self._log_visit(gi, address, size) - return gi, mime, body, tmpf + return gi, mime, body, self.tmp_filename def _send_request(self, gi): """Send a selector to a given host and port.