From 189ca3941cb9edf2c97907ccab5e8dc4869634b5 Mon Sep 17 00:00:00 2001 From: "Robert S. Edmonds" Date: Sat, 10 Aug 2013 16:04:16 -0400 Subject: [PATCH] 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 --- cmd/fuse-cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5