diff --git a/mysql_to_sqlite3/transporter.py b/mysql_to_sqlite3/transporter.py index 7dccfad..cc30505 100644 --- a/mysql_to_sqlite3/transporter.py +++ b/mysql_to_sqlite3/transporter.py @@ -202,7 +202,7 @@ def _translate_type_from_mysql_to_sqlite( # This could be optimized even further, however is seems adequate. match: t.Optional[t.Match[str]] = cls._valid_column_type(_column_type) if not match: - raise ValueError(f'"${_column_type}" is not a valid column_type!') + raise ValueError(f'"{_column_type}" is not a valid column_type!') data_type: str = match.group(0).upper()