Skip to content

Commit 7e3d4b8

Browse files
committed
Add missing f-string in partitioning manager error
Fixes #125
1 parent 7b5aadd commit 7e3d4b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

psqlextra/partitioning/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def _get_partitioned_table(connection, model: PostgresPartitionedModel):
120120
if not table:
121121
raise PostgresPartitioningError(
122122
f"Model {model.__name__}, with table "
123-
"{model._meta.db_table} does not exists in the "
123+
f"{model._meta.db_table} does not exists in the "
124124
"database. Did you run `python manage.py migrate`?"
125125
)
126126

0 commit comments

Comments
 (0)