fix(babel): broken babel extract (#9790)

* fix(babel): broken babel extract

* remove unnecessary f strings
This commit is contained in:
Daniel Vaz Gaspar
2020-05-15 19:05:24 +01:00
committed by GitHub
parent 34df11a61c
commit ea9b7f2dc4
3 changed files with 31 additions and 7 deletions

View File

@@ -127,10 +127,11 @@ class TableNotFoundValidationError(ValidationError):
def __init__(self, table_name: str) -> None:
super().__init__(
_(
f"Table [{table_name}] could not be found, "
"Table [%(table_name)s] could not be found, "
"please double check your "
"database connection, schema, and "
f"table name"
"table name",
table_name=table_name,
),
field_names=["table_name"],
)