1
yomichan-anki/yomi_base/util.py

26 lines
842 B
Python
Raw Normal View History

2011-11-05 16:46:20 +00:00
# -*- coding: utf-8 -*-
# Copyright (C) 2011 Alex Yatskov
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import os.path
def buildResPath(relative):
2011-11-19 16:34:27 +00:00
directory = os.path.split(__file__)[0]
2011-11-05 16:46:20 +00:00
return os.path.join(directory, relative)