-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
I just got this error with Python 2.7.13:
Traceback (most recent call last):
File "/Users/freek/Repository/tvgrabpyAPI/tv_grab_nl3.py", line 123, in <module>
locale.setlocale(locale.LC_ALL, '')
File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py", line 581, in setlocale
return _setlocale(category, locale)
locale.Error: unsupported locale setting
My recommendation is to change:
locale.setlocale(locale.LC_ALL, '')
into:
try:
locale.setlocale(locale.LC_ALL, 'C.UTF-8')
except locale.Error:
locale.setlocale(locale.LC_ALL, 'C')
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels