blob: 2a04ab3de9a1a1ee16e15ee2e747e525929ae7b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import sys, os, glob
from os.path import realpath, dirname, join
from traceback import format_exception
ddd = realpath(join(dirname(sys.argv[0]), '..'))
for d in [ddd, '.']:
for p in glob.glob(join(d, 'build', 'lib.*')):
sys.path.insert(0, p)
try:
import fuse
except ImportError:
raise RuntimeError, """
! Got exception:
""" + "".join([ "> " + x for x in format_exception(*sys.exc_info()) ]) + """
! Have you ran `python setup.py build'?
!
! We've done our best to find the necessary components of the FUSE bindings
! even if it's not installed, we've got no clue what went wrong for you...
"""
|