AV-98-fork

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

commit aa203b95ea86e7d53426fc9a8cc295545a116187
parent f1ef1a12114c9e2cdbdae4e3d9ca39ce7ac70315
Author: Solderpunk <solderpunk@sdf.org>
Date:   Mon, 12 Aug 2019 21:49:18 +0300

Don't needlessly strip lines.

Diffstat:
Mav98.py | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/av98.py b/av98.py @@ -419,7 +419,6 @@ Slow internet connection? Use 'set timeout' to be more patient.""") tmpf = tempfile.NamedTemporaryFile("w", encoding="UTF-8", delete=False) self.idx_filename = tmpf.name for line in body.splitlines(): - line = line.strip() if line.startswith("=>"): try: gi = geminiitem_from_line(line, menu_gi)