bazarr/libs/subzero/util.py

10 lines
274 B
Python
Raw Normal View History

2018-11-01 00:08:29 +08:00
# coding=utf-8
2019-09-17 10:04:27 +08:00
from __future__ import absolute_import
2018-11-01 00:08:29 +08:00
import os
from subzero.lib.io import get_viable_encoding
2019-09-17 10:04:27 +08:00
import six
2018-11-01 00:08:29 +08:00
def get_root_path():
2019-09-17 10:04:27 +08:00
return os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(six.text_type(__file__, get_viable_encoding()))), ".."))