When I run my script from save and run (with hashbang for python 3.3) it executes perfectly. When I try and run it from the task scheduler the log shows this traceback
Traceback (most recent call last):
File "bitlaundry.py", line 139, in <module>
soup = BeautifulSoup(open("1.html"))
File "/home/m3ta/.local/lib/python3.3/site-packages/bs4/__init__.py", line 166, in __init__
markup = markup.read()
File "/usr/lib/python3.3/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe6 in position 3604: ordinal not in range(128)
Whats going on?