浏览代码

Added space before [Y/n] and [y/N] prompts.

Serede Sixty Six 7 年之前
父节点
当前提交
aba42b109e
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      config.go

+ 2 - 2
config.go

@@ -173,9 +173,9 @@ func continueTask(s string, def string) (cont bool) {
 	var postFix string
 
 	if def == "nN" {
-		postFix = "[Y/n] "
+		postFix = " [Y/n] "
 	} else {
-		postFix = "[y/N] "
+		postFix = " [y/N] "
 	}
 
 	var response string