From d1aa4e92bdc62948186dbee2cab40a644beb8112 Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Tue, 29 Mar 2022 06:13:57 -0700 Subject: [PATCH] Quoted path in repl --- osxphotos/cli/repl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osxphotos/cli/repl.py b/osxphotos/cli/repl.py index 10a0da6e..44d87bb0 100644 --- a/osxphotos/cli/repl.py +++ b/osxphotos/cli/repl.py @@ -142,7 +142,7 @@ def repl(ctx, cli_obj, db, emacs, beta, **kwargs): "- AlbumInfo, ExifTool, PhotoInfo, PhotoExporter, ExportOptions, ExportResults, PhotosDB, PlaceInfo, QueryOptions, MomentInfo, ScoreInfo, SearchInfo\n" ) print("The following variables are defined:") - print(f"- photosdb: PhotosDB() instance for {photosdb.library_path}") + print(f"- photosdb: PhotosDB() instance for '{photosdb.library_path}'") print( f"- photos: list of PhotoInfo objects for all photos filtered with any query options passed on command line (len={len(photos)})" )