From c02953ef5fe1aee219e0557bfd8c3322f1900a81 Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Sat, 28 Mar 2020 10:26:10 -0700 Subject: [PATCH] Fixed typo 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 4ac5c89e..81a5651a 100644 --- a/README.md +++ b/README.md @@ -1007,7 +1007,7 @@ e.g. `render_filepath_template("{created.year}/{foo}", photo)` would return `("2 |{modified.mon}|Month abbreviation in the user's locale of the file modification time| |{modified.doy}|3-digit day of year (e.g Julian day) of file modification time, starting from 1 (zero padded)| |{place.name}|Place name from the photo's reverse geolocation data, as displayed in Photos| -|{place.country_code}|The ISO country code from the photo's reverse geolocationo data| +|{place.country_code}|The ISO country code from the photo's reverse geolocation data| |{place.name.country}|Country name from the photo's reverse geolocation data| |{place.name.state_province}|State or province name from the photo's reverse geolocation data| |{place.name.city}|City or locality name from the photo's reverse geolocation data| diff --git a/osxphotos/template.py b/osxphotos/template.py index ce3377a4..186ae944 100644 --- a/osxphotos/template.py +++ b/osxphotos/template.py @@ -25,7 +25,7 @@ TEMPLATE_SUBSTITUTIONS = { "{modified.mon}": "Month abbreviation in the user's locale of the file modification time", "{modified.doy}": "3-digit day of year (e.g Julian day) of file modification time, starting from 1 (zero padded)", "{place.name}": "Place name from the photo's reverse geolocation data, as displayed in Photos", - "{place.country_code}": "The ISO country code from the photo's reverse geolocationo data", + "{place.country_code}": "The ISO country code from the photo's reverse geolocation data", "{place.name.country}": "Country name from the photo's reverse geolocation data", "{place.name.state_province}": "State or province name from the photo's reverse geolocation data", "{place.name.city}": "City or locality name from the photo's reverse geolocation data",