Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
signedav committed Dec 6, 2021
1 parent ccf8a08 commit 5dc010b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions QgisModelBaker/libqgsprojectgen/dbconnector/gpkg_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ def _fetch_and_increment_key_object(self, field_name):
return (
True,
next_id,
self.tr("Successfully updated the T_LastUniqueId to {}.").format(
self.tr("Successfully set the T_LastUniqueId to {}.").format(
next_id
),
)
Expand All @@ -814,12 +814,14 @@ def _fetch_and_increment_key_object(self, field_name):
return (
False,
next_id,
self.tr("Could not the T_LastUniqueId to {}: {}").format(
self.tr("Could not set the T_LastUniqueId to {}: {}").format(
next_id, error_message
),
)
return (
False,
next_id,
self.tr("Could fetch T_LastUniqueId because T_KEY_OBJECT does not exist."),
self.tr(
"Could not fetch T_LastUniqueId because T_KEY_OBJECT does not exist."
),
)

0 comments on commit 5dc010b

Please sign in to comment.