diff options
| author | Zach DeCook <zachdecook@librem.one> | 2021-04-24 09:06:53 -0400 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2021-04-24 09:06:53 -0400 |
| commit | 93e240a3166591359c15bc7ddf818f980c3bf3b2 (patch) | |
| tree | 64966b51ccbcc96c40aabf1aaab6c1daff924645 /lsv.py | |
| parent | 9618a313d6e04b0d0d06b03f342e70a827d4f574 (diff) | |
| download | cgi-bin-93e240a3166591359c15bc7ddf818f980c3bf3b2.tar.gz | |
lsv: single verse range
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 9100629..63678ba 100755 --- a/lsv.py +++ b/lsv.py @@ -37,7 +37,7 @@ def main(qs): for line in f: if (startmark+' ') in line: printing = True - elif endmark in line: + if (endmark + ' ') in line: printf(line) printing = False if printing: |
