On Tue, Sep 22, 2015 at 04:05:44PM -0500, David Mohr wrote: > >>> import fuse > >>> help(fuse) > > >>> f = fuse.FUSE() > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > TypeError: __init__() takes at least 3 arguments (1 given) > >>> fuse.FUSE > <class 'fuse.FUSE'> > >>>
Strange. I get this: $ python Python 2.7.9 (default, Mar 1 2015, 12:57:24) [GCC 4.9.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import fuse >>> fuse.Fuse <class 'fuse.Fuse'> >>> fuse.FUSE Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'module' object has no attribute 'FUSE' >>> $ apt-cache policy python-fuse In other words, my python-fuse (same version as yours) has fuse.Fuse, not fuse.FUSE. -- Schrödinger's backup hypothesis: the condition of any backup is undefined until a restore is attempted. -- andrewsh