Skip to content

Commit

Permalink
g.download.project: Fix string formatting error when download already…
Browse files Browse the repository at this point in the history
… exists (OSGeo#5339)
  • Loading branch information
echoix authored Mar 11, 2025
1 parent bd253b7 commit 3df7050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/g.download.project/g.download.project.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def main(options, unused_flags):
if destination.exists():
gs.fatal(
_(
"Project named <{}> already exists in <{directory}>, download canceled"
"Project named <{name}> already exists in <{directory}>, download canceled"
).format(name=name, directory=database)
)

Expand Down

0 comments on commit 3df7050

Please sign in to comment.