about summary refs log tree commit diff
path: root/zachwalk.py
diff options
context:
space:
mode:
Diffstat (limited to 'zachwalk.py')
-rwxr-xr-xzachwalk.py2
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()