forked from mirror/logrus
text-formatter: do not quote 9
This commit is contained in:
parent
9aea821200
commit
ff5ba169e8
|
@ -110,7 +110,7 @@ func needsQuoting(text string) bool {
|
|||
for _, ch := range text {
|
||||
if !((ch >= 'a' && ch <= 'z') ||
|
||||
(ch >= 'A' && ch <= 'Z') ||
|
||||
(ch >= '0' && ch < '9') ||
|
||||
(ch >= '0' && ch <= '9') ||
|
||||
ch == '-' || ch == '.') {
|
||||
return false
|
||||
}
|
||||
|
|
|
@ -25,6 +25,7 @@ func TestQuoting(t *testing.T) {
|
|||
|
||||
checkQuoting(false, "abcd")
|
||||
checkQuoting(false, "v1.0")
|
||||
checkQuoting(false, "1234567890")
|
||||
checkQuoting(true, "/foobar")
|
||||
checkQuoting(true, "x y")
|
||||
checkQuoting(true, "x,y")
|
||||
|
|
Loading…
Reference in New Issue