config: "integer type" -> "value type" (for enum type)
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Mon, 14 Mar 2016 21:51:19 +0000 (17:51 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 17 Mar 2016 16:38:11 +0000 (12:38 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
barectf/config.py

index 1b6cb0f1b4f82d3b20fc1ddb966e1fe8f53ca5f4..ae0a77f962dd8ae06ad3fdde0ca671133ed2f503 100644 (file)
@@ -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:
This page took 0.024779 seconds and 4 git commands to generate.