Fix mapping schema

Signed-off-by: Vladimir Diaz <vladimir.v.diaz@gmail.com>
This commit is contained in:
Vladimir Diaz 2017-10-16 15:47:33 -04:00
parent 57313fbf6e
commit edc53b165a
No known key found for this signature in database
GPG key ID: 5DEE9B97B0E2289A

View file

@ -258,9 +258,9 @@
TARGETINFOS_SCHEMA = SCHEMA.ListOf(TARGETINFO_SCHEMA)
# A Dict containing the map file's "mapping" attribute.
MAPPING_SCHEMA = SCHEMA.Oject(
MAPPING_SCHEMA = SCHEMA.Object(
paths = RELPATHS_SCHEMA,
repositories = SCHEMA.ListOf(NAME_SCHEMA),
repositories = SCHEMA.ListOf(SCHEMA.AnyString()),
terminating = BOOLEAN_SCHEMA,
threshold = THRESHOLD_SCHEMA)