aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorFurkan KAMACI <furkankamaci@gmail.com>2018-01-03 20:14:47 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-01-03 20:14:47 +0800
commitb8caba97099ee5eed33c3b80dd4ea540722e7d8f (patch)
tree36c3661d083d81bc52676ff9a030f6e02c91b29c /cmd
parent9d48dbf5c2d0401042134d94997be1850bf8499b (diff)
downloaddexon-b8caba97099ee5eed33c3b80dd4ea540722e7d8f.tar
dexon-b8caba97099ee5eed33c3b80dd4ea540722e7d8f.tar.gz
dexon-b8caba97099ee5eed33c3b80dd4ea540722e7d8f.tar.bz2
dexon-b8caba97099ee5eed33c3b80dd4ea540722e7d8f.tar.lz
dexon-b8caba97099ee5eed33c3b80dd4ea540722e7d8f.tar.xz
dexon-b8caba97099ee5eed33c3b80dd4ea540722e7d8f.tar.zst
dexon-b8caba97099ee5eed33c3b80dd4ea540722e7d8f.zip
various: remove redundant parentheses (#15793)
Diffstat (limited to 'cmd')
-rw-r--r--cmd/swarm/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/swarm/config.go b/cmd/swarm/config.go
index 33235ca06..29b5faefa 100644
--- a/cmd/swarm/config.go
+++ b/cmd/swarm/config.go
@@ -315,7 +315,7 @@ func checkDeprecated(ctx *cli.Context) {
func printConfig(config *bzzapi.Config) string {
out, err := tomlSettings.Marshal(&config)
if err != nil {
- return (fmt.Sprintf("Something is not right with the configuration: %v", err))
+ return fmt.Sprintf("Something is not right with the configuration: %v", err)
}
return string(out)
}