schema: Accept band GSM-900

Change-Id: I274c3010f33776b2967ee01de027c44b794cc5d4
This commit is contained in:
Pau Espin 2018-03-27 19:15:41 +02:00
parent a238ed9931
commit 05a838e259
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ def match_re(name, regex, val):
raise ValueError('Invalid %s: %r' % (name, val))
def band(val):
if val in ('GSM-1800', 'GSM-1900'):
if val in ('GSM-900', 'GSM-1800', 'GSM-1900'):
return
raise ValueError('Unknown GSM band: %r' % val)