trim strings extracted from descriptions (fixes #51)
This commit is contained in:
parent
c99e498508
commit
564a7b5b72
@ -44,7 +44,7 @@ func labelKeysFromDescription(desc string) (res []string) {
|
||||
continue
|
||||
}
|
||||
|
||||
res = append(res, tmp[0])
|
||||
res = append(res, strings.TrimSpace(tmp[0]))
|
||||
}
|
||||
|
||||
return
|
||||
@ -57,7 +57,7 @@ func labelValuesFromDescription(desc string) (res []string) {
|
||||
continue
|
||||
}
|
||||
|
||||
res = append(res, tmp[1])
|
||||
res = append(res, strings.TrimSpace(tmp[1]))
|
||||
}
|
||||
|
||||
return
|
||||
|
Loading…
x
Reference in New Issue
Block a user