diff options
| author | Zach DeCook <zachdecook@librem.one> | 2022-12-22 15:32:33 -0500 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2022-12-22 15:32:33 -0500 |
| commit | 6e218d28d7185b4b6156e361d73b156f856aa23f (patch) | |
| tree | c4e54331005aa4d7664a02ae0936d803fe6794cb /lsv.py | |
| parent | 0d786c11a92545c601bc8bb8808982af910d6cff (diff) | |
| download | cgi-bin-6e218d28d7185b4b6156e361d73b156f856aa23f.tar.gz | |
lsv: Add newline after each verse
Diffstat (limited to 'lsv.py')
| -rwxr-xr-x | lsv.py | 2 |
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() |
