scripts for my gemini capsule
lsv: Add newline after each verse
Zach DeCook 2022-12-22
parent 0d786c1 · commit 6e218d2
-rwxr-xr-xlsv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsv.py b/lsv.py
index faf158f..9902198 100755
--- a/lsv.py
+++ b/lsv.py
@@ -8,7 +8,7 @@ def printf(line):
if line.strip():
notref = ' '.join(line.split(' ')[2:]).strip()
notref = notref.replace('||', "\n")
- print(notref, end=' ')
+ print(notref, end='\n')
else:
print()