blob: 25ab0cd6060b9cd40bf7b40fd28ab1409bec86ad (
plain)
1
2
3
4
5
6
7
|
# coding=utf-8
import os
from subzero.lib.io import get_viable_encoding
def get_root_path():
return os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(unicode(__file__, get_viable_encoding()))), ".."))
|