AV-98-fork

A fork of https://tildegit.org/solderpunk/AV-98
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 08ce625575245d547d405de7cf596ae496e3aeea
parent 34e97e4cf33b00e567ee66cf3517d0a7ba4dacb2
Author: Solderpunk <solderpunk@sdf.org>
Date:   Sun, 31 May 2020 14:24:23 +0200

Arglblargl *actually* fix redirects.

Diffstat:
Mav98.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/av98.py b/av98.py @@ -432,7 +432,7 @@ Slow internet connection? Use 'set timeout' to be more patient.""") follow = input("Follow redirect to %s? (y/n) " % new_gi.url) # Otherwise, follow away else: - follow == "yes" + follow = "yes" if follow.strip().lower() not in ("y", "yes"): return self._debug("Following redirect to %s." % new_gi.url)