I’ve found the solution. Just adding this to the first line of the python code:
# -*- coding: <encoding-name> -*-
In my case the encoding-name is utf-8. So it would be like this:
# -*- coding: utf-8 -*-
And everything is fine now.
I’ve found the solution. Just adding this to the first line of the python code:
# -*- coding: <encoding-name> -*-
In my case the encoding-name is utf-8. So it would be like this:
# -*- coding: utf-8 -*-
And everything is fine now.