From 6e218d28d7185b4b6156e361d73b156f856aa23f Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Thu, 22 Dec 2022 15:32:33 -0500 Subject: [PATCH] lsv: Add newline after each verse --- lsv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.45.2