commit 7852a3f5446dce0182f7eeaccf37e7a34e49bee6 parent afc4d7e8fdf036556dc85b63be18aba6391b1b10 Author: Solderpunk <solderpunk@sdf.org> Date: Sun, 18 Aug 2019 23:29:45 +0300 Fix bookmarking, again. Diffstat:
M | av98.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/av98.py b/av98.py @@ -879,7 +879,7 @@ Bookmarks are stored in the ~/.av98-bookmarks.txt file.""" else: with open(bm_file, "r") as fp: body = fp.read() - gi = GeminiItem("file://localhost/" + bm_file) + gi = GeminiItem("localhost/" + bm_file) self._handle_index(body, gi) ### Help