summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-08-29 13:12:29 +0300
committerLars Wirzenius <liw@liw.fi>2015-08-29 13:12:29 +0300
commit10375c4c5dfa6bfc4c941a649408e8bb103b8b65 (patch)
tree50b3464e16ce996396437527f43435219d7101f6
parenteecd345b53b89de95c6351c0a8c4bc200ad8ced9 (diff)
downloadobnam-10375c4c5dfa6bfc4c941a649408e8bb103b8b65.tar.gz
Make class be new-style
-rw-r--r--obnamlib/plugins/fuse_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/obnamlib/plugins/fuse_plugin.py b/obnamlib/plugins/fuse_plugin.py
index 0b9a78ee..c6d46a80 100644
--- a/obnamlib/plugins/fuse_plugin.py
+++ b/obnamlib/plugins/fuse_plugin.py
@@ -32,7 +32,7 @@ except ImportError:
# this plugin file can be imported. If the module isn't there, the
# plugin won't work, and it will tell the user it won't work, but
# at least Obnam won't crash at startup.
- class Bunch:
+ class Bunch(object):
def __init__(self, **kwds):
self.__dict__.update(kwds)
fuse = Bunch(Fuse=object)