From 68d3efb78528662a24c418c4e993b34312358c4a Mon Sep 17 00:00:00 2001 From: Joris Coenen Date: Mon, 8 Jun 2020 17:58:50 +0200 Subject: [PATCH] Fix formatting --- internals/secrethub/mkdir.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internals/secrethub/mkdir.go b/internals/secrethub/mkdir.go index fe1d5c15..37e94438 100644 --- a/internals/secrethub/mkdir.go +++ b/internals/secrethub/mkdir.go @@ -51,7 +51,7 @@ func (cmd *MkDirCommand) Run() error { for _, path := range cmd.paths { err := cmd.createDirectory(client, path) if err != nil { -fmt.Fprintf(os.Stderr, "Could not create a new directory at %s: %s\n", path, err) + fmt.Fprintf(os.Stderr, "Could not create a new directory at %s: %s\n", path, err) } else { fmt.Fprintf(cmd.io.Output(), "Created a new directory at %s\n", path) }