diff --git a/README.md b/README.md index ed183d48..aa4ea864 100644 --- a/README.md +++ b/README.md @@ -286,7 +286,7 @@ Substitution Description {place.city} City part of the postal address, e.g. 'Washington' {place.state} State part of the postal address, e.g. 'DC' {place.postal_code} Postal code part of the postal address, e.g. '20009' -{place.country} Country name of the postal code, e.g. 'United States' +{place.country} Country name of the postal address, e.g. 'United States' {place.country_code} ISO country code of the postal address, e.g. 'US' ``` diff --git a/osxphotos/template.py b/osxphotos/template.py index 199b1449..9f4c10f8 100644 --- a/osxphotos/template.py +++ b/osxphotos/template.py @@ -31,7 +31,7 @@ TEMPLATE_SUBSTITUTIONS = { "{place.city}": "City part of the postal address, e.g. 'Washington'", "{place.state}": "State part of the postal address, e.g. 'DC'", "{place.postal_code}": "Postal code part of the postal address, e.g. '20009'", - "{place.country}": "Country name of the postal code, e.g. 'United States'", + "{place.country}": "Country name of the postal address, e.g. 'United States'", "{place.country_code}": "ISO country code of the postal address, e.g. 'US'", }