AV-98-fork

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

commit d4e9feebc5e2812219023a6b8403282e6e9e54f6
parent 24563acf6da4ee14cf1bfc66a7aad60b16a0e460
Author: Solderpunk <solderpunk@sdf.org>
Date:   Sun, 10 May 2020 17:00:30 +0200

Small bugfix.

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

diff --git a/av98.py b/av98.py @@ -282,7 +282,7 @@ class GeminiClient(cmd.Cmd): print("PRIVACY ALERT: Reactivate previously used client cert for {}?".format(gi.host)) resp = input("Y/N? ") if resp.strip().lower() in ("y", "yes"): - self._activate_client_cert(self.client_certs[gi.host]) + self._activate_client_cert(*self.client_certs[gi.host]) else: print("Remaining unidentified.") self.client_certs.pop(gi.host)