From 0bb579ee87b1cf5f72168930a9d04075aab0f073 Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Sat, 1 Feb 2020 07:46:30 -0800 Subject: [PATCH] Updated help strings --- osxphotos/__main__.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/osxphotos/__main__.py b/osxphotos/__main__.py index f9caab50..a51c1004 100644 --- a/osxphotos/__main__.py +++ b/osxphotos/__main__.py @@ -94,21 +94,24 @@ def query_options(f): metavar="KEYWORD", default=None, multiple=True, - help="Search for keyword(s).", + help="Search for keyword KEYWORD. " + 'If more than one keyword, treated as "OR", e.g. find photos match any keyword', ), o( "--person", metavar="PERSON", default=None, multiple=True, - help="Search for person(s).", + help="Search for person PERSON. " + 'If more than one person, treated as "OR", e.g. find photos match any person', ), o( "--album", metavar="ALBUM", default=None, multiple=True, - help="Search for album(s).", + help="Search for album ALBUM. " + 'If more than one album, treated as "OR", e.g. find photos match any album', ), o( "--uuid",