From dfc31ff15f3f0bee367e74794338fb5372d79885 Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Mon, 23 Mar 2020 19:24:44 -0700 Subject: [PATCH] Type fix in help text --- README.md | 2 +- osxphotos/template.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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'", }