From ee1dc89b52f54b72c72f66372564581e83241421 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Wed, 18 Mar 2015 02:33:34 +0100 Subject: [PATCH] fix misleading hint the fuse ImportError handler gave, fixes #237 --- attic/archiver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/attic/archiver.py b/attic/archiver.py index 47650c2d4..8741a3215 100644 --- a/attic/archiver.py +++ b/attic/archiver.py @@ -242,8 +242,8 @@ Type "Yes I am sure" if you understand this and want to continue.\n""") """Mount archive or an entire repository as a FUSE fileystem""" try: from attic.fuse import AtticOperations - except ImportError: - self.print_error('the "llfuse" module is required to use this feature') + except ImportError as e: + self.print_error('loading fuse support failed [ImportError: %s]' % str(e)) return self.exit_code if not os.path.isdir(args.mountpoint) or not os.access(args.mountpoint, os.R_OK | os.W_OK | os.X_OK):