From d59add55d0d79b29eec80d562eac838b5cf74005 Mon Sep 17 00:00:00 2001 From: Jake Champlin Date: Tue, 21 Jun 2016 17:35:08 -0400 Subject: [PATCH] Formatting updates --- command/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/run.go b/command/run.go index a5610b53c..7abd93da0 100644 --- a/command/run.go +++ b/command/run.go @@ -132,7 +132,7 @@ func (c *RunCommand) Run(args []string) int { if path == "-" { c.Ui.Error(fmt.Sprintf("Error parsing job from STDIN: %v", err)) } else { - c.Ui.Error(fmt.Sprintf("Error parsing job file %s: %s", f, err)) + c.Ui.Error(fmt.Sprintf("Error parsing job file %q: %v", path, err)) } return 1 }