should probably strip that.

This commit is contained in:
brent s 2020-07-14 17:17:04 -04:00
parent c4bb612381
commit 6deef053d3
Signed by: bts
GPG Key ID: 8C004C2F93481F6B
1 changed files with 2 additions and 2 deletions

View File

@ -67,9 +67,9 @@ def main():
rslts = i.find()
if isinstance(rslts, list):
for i in rslts:
print(i.text)
print(i.text.strip())
else:
print(rslts.text)
print(rslts.text.strip())
return(None)