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
I have been battling this for nearly (wasted) three hours now.
Neither the correction above works in 3.6.1, nor does the existing code (master).
Just returning the string before the join statement fixes the issue.
I realize there are some other considerations, but we really need to make a decision on the best implementation from the PRs becuase others will waste hours on it as well.
Archive: agi.py
Bug Python 3 at Line: 128
return ''.join(['"', string.encode('utf8', 'ignore'), '"'])
Correction:
return ''.join(['"', string.encode('ascii', 'ignore').decode('ascii'), '"'])
The text was updated successfully, but these errors were encountered: