aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/swarm/fs.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/swarm/fs.go')
-rw-r--r--cmd/swarm/fs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/swarm/fs.go b/cmd/swarm/fs.go
index 0124586cf..3dc38ca4d 100644
--- a/cmd/swarm/fs.go
+++ b/cmd/swarm/fs.go
@@ -92,7 +92,7 @@ func listMounts(cliContext *cli.Context) {
mf := []fuse.MountInfo{}
err = client.CallContext(ctx, &mf, "swarmfs_listmounts")
if err != nil {
- utils.Fatalf("encountered an error calling the RPC endpoint while unmounting: %v", err)
+ utils.Fatalf("encountered an error calling the RPC endpoint while listing mounts: %v", err)
}
if len(mf) == 0 {
fmt.Print("Could not found any swarmfs mounts. Please make sure you've specified the correct RPC endpoint\n")