From 7ea0b871a98c0fde32c5c13785cf294cdfbdcc6d Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Mon, 14 Mar 2016 17:51:19 -0400 Subject: [PATCH] config: "integer type" -> "value type" (for enum type) Signed-off-by: Philippe Proulx --- barectf/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.34.1