about summary refs log tree commit diff
path: root/templater
diff options
context:
space:
mode:
Diffstat (limited to 'templater')
-rw-r--r--templater/pass.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/templater/pass.go b/templater/pass.go
index f1dc82986174..fbd2c076412b 100644
--- a/templater/pass.go
+++ b/templater/pass.go
@@ -8,6 +8,7 @@ import (
 	"os/exec"
 
 	"github.com/polydawn/meep"
+	"strings"
 )
 
 type PassError struct {
@@ -28,5 +29,7 @@ func GetFromPass(key string) (string, error) {
 		)
 	}
 
-	return string(output), nil
+	trimmed := strings.TrimSpace(string(output))
+
+	return trimmed, nil
 }