summaryrefslogtreecommitdiff
path: root/stdin.go
diff options
context:
space:
mode:
Diffstat (limited to 'stdin.go')
-rw-r--r--stdin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdin.go b/stdin.go
index 9093246..de81e3a 100644
--- a/stdin.go
+++ b/stdin.go
@@ -34,7 +34,7 @@ func simpleStdin(b bool, s []string) {
for scanner.Scan() {
s := scanner.Text()
s = strings.TrimSpace(s)
- // s = strings.Lower(s)
+ s = strings.ToLower(s)
switch s {
case "y":
log.Info("got y")