diff --git a/pyxform/entities/entities_parsing.py b/pyxform/entities/entities_parsing.py index a3fdbee7..42ee7ac9 100644 --- a/pyxform/entities/entities_parsing.py +++ b/pyxform/entities/entities_parsing.py @@ -17,7 +17,7 @@ def get_entity_declaration(workbook_dict: Dict, warnings: List) -> Dict: return {} elif len(entities_sheet) > 1: raise PyXFormError( - "This version of pyxform only supports declaring a single entity per form. Please make sure your entities sheet only declares one entity." + "Currently, you can only declare a single entity per form. Please make sure your entities sheet only declares one entity." ) entity = entities_sheet[0] diff --git a/tests/test_entities.py b/tests/test_entities.py index 29a309bc..01a0e705 100644 --- a/tests/test_entities.py +++ b/tests/test_entities.py @@ -44,7 +44,7 @@ def test_multiple_dataset_rows_in_entities_sheet__errors(self): """, errored=True, error__contains=[ - "This version of pyxform only supports declaring a single entity per form. Please make sure your entities sheet only declares one entity." + "Currently, you can only declare a single entity per form. Please make sure your entities sheet only declares one entity." ], )