Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 2dd3122423358ea445dd28c817a88036 > files > 30

fuse-python-0.2.1-3.fc15.i686.rpm

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...
"""