Fixed Description - ";" replaced

This commit is contained in:
Carlos Sousa
2021-05-03 17:54:21 +02:00
parent 05dfb1e15b
commit 51ab8659fb

View File

@@ -80,7 +80,7 @@ def imdbscrapper(startURL, endURL):
# Gets the desired values from the JSON response
dataRow.append(data['name'])
try:
dataRow.append(data['description'])
dataRow.append(str(data['description']).replace(';', ''))
except Exception as e:
dataRow.append("Description unavailable")
dataRow.append(url)