"python-fuse" is not quite correct, since this is confusingly what Debian calls
(in order to conform to Debian Python package naming policy) the upstream
package actually called "fuse-python". Other distros do refer to the package as
fuse-python.
Tweak the wording slightly in order to avoid this ambiguity, and also to make it
congruous to the wording of a similar import guard I used in cmd/web.
Signed-off-by: Robert S. Edmonds <edmonds@debian.org>
import fuse
except ImportError:
log('bup: error: The python "fuse" module is missing.\n' +
- 'To use bup fuse, first install the python-fuse package.\n')
+ 'Please install it in order to use bup fuse.\n')
sys.exit(1)