Merge pull request #1973 from tilmankamp/fix1972

Fix #1972
This commit is contained in:
Tilman Kamp 2019-03-21 14:40:26 +01:00 committed by GitHub
commit 730ef1b5c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,6 +135,7 @@ def validate_label(label):
label = label.replace("?", "")
label = label.replace("\"", "")
label = label.strip()
label = label.lower()
return label.lower()
return label if label else None