From: Philippe Proulx Date: Mon, 14 Mar 2016 21:51:19 +0000 (-0400) Subject: config: "integer type" -> "value type" (for enum type) X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=7ea0b871a98c0fde32c5c13785cf294cdfbdcc6d;p=deliverable%2Fbarectf.git config: "integer type" -> "value type" (for enum type) Signed-off-by: Philippe Proulx --- diff --git a/barectf/config.py b/barectf/config.py index 1b6cb0f..ae0a77f 100644 --- a/barectf/config.py +++ b/barectf/config.py @@ -988,7 +988,7 @@ class _MetadataTypesHistologyValidator: def _validate_enum_histology(self, t): # integer type is set if t.value_type is None: - raise ConfigError('missing enumeration type\'s integer type') + raise ConfigError('missing enumeration type\'s value type') # there's at least one member if not t.members: