This repository was archived by the owner on Dec 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
35 lines (34 loc) · 1.37 KB
/
__init__.py
File metadata and controls
35 lines (34 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
#
# GPL License and Copyright Notice ============================================
# This file is part of Wrye Bash.
#
# Wrye Bash 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 2
# of the License, or (at your option) any later version.
#
# Wrye Bash 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 Wrye Bash; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# Wrye Bash copyright (C) 2005-2009 Wrye, 2010-2021 Wrye Bash Team
# https://github.com/wrye-bash
#
# =============================================================================
"""Import the Wrye Bash directories"""
import sys
# from os.path import dirname, abspath, join, sep
# mopy = dirname(dirname(abspath(__file__)))
# assert mopy.split(sep)[-1].lower() == 'mopy'
# bash_source = join(mopy, 'bash')
# print sys.path
# sys.path.insert(0, mopy)
# print 'Mopy folder appended to path: ', mopy
# print __name__.split('.')[0]
# print __name__