Writing my code for Python 2.6, but with Python 3 in mind, I thought it was a good idea to put
from __future__ import unicode_literals
at t
I try this on Python 3:
import os os.path.abspath("yourPath")
import os
os.path.abspath("yourPath")
and it's worked!