Fix problem capital name of a board.

The control that didn't let you create a board
with a name in capital letters has been removed.

Change-Id: I0098ff38de15c02b724da1e85c74ea4acfda0974
This commit is contained in:
Fabio Verboso 2020-03-03 11:58:05 +01:00
parent bc736c3fdf
commit 4bdaa441c1
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ def is_valid_board_name(name):
:param: name: the board name to check.
:returns: True if the name is valid, False otherwise.
"""
return utils.is_hostname_safe(name) and (not uuidutils.is_uuid_like(name))
return not uuidutils.is_uuid_like(name)
def is_valid_name(name):