Feed date scraper for Gemini (protocol)
Diffstat (limited to 'zachwalk.py')
| -rwxr-xr-x | zachwalk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zachwalk.py b/zachwalk.py index 1a15ddc..9df813c 100755 --- a/zachwalk.py +++ b/zachwalk.py @@ -70,7 +70,7 @@ def isAbsGeminiUrl(url): return url[0:9] == 'gemini://' def getdesc(line): - return ' '.join(line.split(' ')[2:]).strip() + return ' '.join(line[2:].strip().split(' ')[1:]) if __name__ == '__main__': main() |