Tested on Windows 10 & Ubuntu 16.
- Check that sshd on Ubuntu is properly configured
04eed5d1e19991a780815c30f6c443f7bced3608e8ead40924369aaa1b0eb09a48eba687bf3e96d0b4191982e2f2b0dc6211684ef7aac36ca174fbdc96c16de4e6 |
I hereby claim:
To claim this, I am signing this object:
import requests | |
import json | |
import locale | |
def set_locale(): | |
locales_to_try = ['en_US.UTF-8', 'en_US.utf8', 'English_United States.1252'] | |
for loc in locales_to_try: | |
try: | |
locale.setlocale(locale.LC_ALL, loc) | |
return True |