From: Robert S. Edmonds Date: Sat, 10 Aug 2013 20:04:16 +0000 (-0400) Subject: cmd/fuse: tweak the wording of the import guard error message X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=189ca3941cb9edf2c97907ccab5e8dc4869634b5;p=packages%2Fb%2Fbup.git cmd/fuse: tweak the wording of the import guard error message "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 --- diff --git a/cmd/fuse-cmd.py b/cmd/fuse-cmd.py index 9253a18..78645e9 100755 --- a/cmd/fuse-cmd.py +++ b/cmd/fuse-cmd.py @@ -6,7 +6,7 @@ try: 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)