Add + to the allowed API string character set

This commit is contained in:
Brian C. Lane 2018-08-07 15:14:26 -07:00
parent 716fb3277f
commit 4307eebb49
1 changed files with 1 additions and 1 deletions

View File

@ -18,4 +18,4 @@ import re
# These are the characters that we allow to be passed in via the
# API calls.
VALID_API_STRING = re.compile(r'^[a-zA-Z0-9_,.:*-]+$')
VALID_API_STRING = re.compile(r'^[a-zA-Z0-9_,.:+*-]+$')