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
It seems the try clause interpolates a CP1252 umlaut into the html and that causes simplejson to throw later on. Python 3 is not affected.
UPDATE: The above hack fails on WindowsXP. Changing timefmt on line 64
from '%a %b %d %H:%M:%S %Y %Z' to '%a %b %d %H:%M:%S %Y'
(i.e. dropping %Z) is a remedy.
The text was updated successfully, but these errors were encountered:
With WinPython 2.7 (both 2.7.9.3 and 2.7.10.2) on Windows 10 I get this exception.
Peeking into the source and changing at line 131
into the except clause only
did the trick for me:
It seems the try clause interpolates a CP1252 umlaut into the html and that causes simplejson to throw later on. Python 3 is not affected.
UPDATE: The above hack fails on WindowsXP. Changing timefmt on line 64
from '%a %b %d %H:%M:%S %Y %Z' to '%a %b %d %H:%M:%S %Y'
(i.e. dropping %Z) is a remedy.
The text was updated successfully, but these errors were encountered: