File: _find_fuse_parts.py

package info (click to toggle)
python-fuse 2%3A0.2.1-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 360 kB
  • ctags: 319
  • sloc: python: 999; ansic: 959; sh: 68; makefile: 9
file content (22 lines) | stat: -rw-r--r-- 620 bytes parent folder | download | duplicates (5)
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...
"""