You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
changing line 74 of workers.py from if msg!=[]: temp["conversations"].append(msg.strip().replace("\t", " ")); msg=[]
to if msg!=[]: temp["conversations"].append(str(msg).strip().replace("\t", " ")); msg=[]
fixed this
The text was updated successfully, but these errors were encountered:
This repo is no logner being actively maintained! Feel free to open a PR if this is a change you really needed added to this repo specifically and not a fork
changing line 74 of workers.py from
if msg!=[]: temp["conversations"].append(msg.strip().replace("\t", " ")); msg=[]
to
if msg!=[]: temp["conversations"].append(str(msg).strip().replace("\t", " ")); msg=[]
fixed this
The text was updated successfully, but these errors were encountered: