Skip to content

Commit

Permalink
Add missing f-string in partitioning manager error
Browse files Browse the repository at this point in the history
Fixes #125
  • Loading branch information
Photonios committed Feb 24, 2021
1 parent 7b5aadd commit 7e3d4b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psqlextra/partitioning/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def _get_partitioned_table(connection, model: PostgresPartitionedModel):
if not table:
raise PostgresPartitioningError(
f"Model {model.__name__}, with table "
"{model._meta.db_table} does not exists in the "
f"{model._meta.db_table} does not exists in the "
"database. Did you run `python manage.py migrate`?"
)

Expand Down

0 comments on commit 7e3d4b8

Please sign in to comment.