remove "$" characters from CSV output
This commit is contained in:
parent
61695ff01f
commit
013489d6aa
@ -15,7 +15,7 @@ def filter_contents(s):
|
|||||||
if new_s == s:
|
if new_s == s:
|
||||||
break;
|
break;
|
||||||
s = new_s
|
s = new_s
|
||||||
return s.replace(',', '').strip()
|
return s.replace(',', '').replace('$', '').strip()
|
||||||
|
|
||||||
def slurp_row(fh, rows):
|
def slurp_row(fh, rows):
|
||||||
row = []
|
row = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user