Spaces:
Runtime error
Runtime error
xiomarablanco
commited on
Commit
•
50945e4
1
Parent(s):
89e2f4e
Update app.py
Browse files
app.py
CHANGED
@@ -288,7 +288,7 @@ def answersTodict(zip_path):
|
|
288 |
#print("texto: " + textoFichero)
|
289 |
|
290 |
#removing html
|
291 |
-
textoFichero = removeHtmlFromString(textoFichero)
|
292 |
|
293 |
#saving it
|
294 |
studentAnswersDict.append({"respuesta":textoFichero, "hashed_id":student_name, "TableIndex":indx})
|
|
|
288 |
#print("texto: " + textoFichero)
|
289 |
|
290 |
#removing html
|
291 |
+
textoFichero = removeHtmlFromString(str(textoFichero.encode("utf-8")))
|
292 |
|
293 |
#saving it
|
294 |
studentAnswersDict.append({"respuesta":textoFichero, "hashed_id":student_name, "TableIndex":indx})
|