Skip to content

Commit

Permalink
Fix version included in suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
rustprooflabs committed Nov 22, 2023
1 parent 77b0571 commit b64e63f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/import_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def okay_to_run(self, prior_import: dict) -> bool:
if parse_version(git_tag) < parse_version(prior_import_version):
msg = f'PgOSM Flex version ({git_tag}) is lower than latest import'
msg += f' tracked in the pgosm_flex table ({prior_import_version}).'
msg += f' Use PgOSM Flex version {git_tag} or newer'
msg += f' Use PgOSM Flex version {prior_import_version} or newer'
self.logger.error(msg)
return False
else:
Expand Down

0 comments on commit b64e63f

Please sign in to comment.