]> git.michaelhowe.org Git - packages/b/bup.git/commitdiff
cmd/fuse: tweak the wording of the import guard error message
authorRobert S. Edmonds <edmonds@debian.org>
Sat, 10 Aug 2013 20:04:16 +0000 (16:04 -0400)
committerRobert S. Edmonds <edmonds@debian.org>
Sat, 10 Aug 2013 20:04:16 +0000 (16:04 -0400)
"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>
cmd/fuse-cmd.py

index 9253a18de996efbea4f58b2125a851bcd1144232..78645e91627fd7c77721ea101d33d9d1e6052638 100755 (executable)
@@ -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)