diff options
| author | Zach DeCook <zachdecook@librem.one> | 2022-10-17 18:30:53 -0500 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2022-10-17 18:30:53 -0500 |
| commit | ec407bc58b077b3b0837121d5719195b1c2cd6cc (patch) | |
| tree | 8fcc7204c36cc50c76d18634b73ded260246bc0b /lsv.py | |
| parent | 90479b0ac1e990820e7a01ec58685b217f138d96 (diff) | |
| download | cgi-bin-ec407bc58b077b3b0837121d5719195b1c2cd6cc.tar.gz | |
get and slightly fix lsv
Diffstat (limited to 'lsv.py')
| -rwxr-xr-x | lsv.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lsv.py b/lsv.py index 63678ba..faf158f 100755 --- a/lsv.py +++ b/lsv.py @@ -31,9 +31,9 @@ def main(qs): print("# " + passage.format()) printing = False f = open('lsv.txt') - startmark = passage.start.format('a c:v') + startmark = passage.start.format('a')[0:3]+" "+passage.start.format('c:v') eprint(startmark) - endmark = passage.end.format('a c:v') + endmark = passage.end.format('a')[0:3]+" "+passage.end.format('c:v') for line in f: if (startmark+' ') in line: printing = True |
