From 8ee8a38f0fd69a46d28f552fdea316ffee2cd7df Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Sat, 21 Dec 2019 22:53:22 -0800 Subject: [PATCH] fixed bug related to db_path properties re-factoring --- osxphotos/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osxphotos/__main__.py b/osxphotos/__main__.py index 07590782..04654c3a 100644 --- a/osxphotos/__main__.py +++ b/osxphotos/__main__.py @@ -87,7 +87,7 @@ def info(cli_obj): """ Print out descriptive info of the Photos library database. """ pdb = osxphotos.PhotosDB(dbfile=cli_obj.db) info = {} - info["database_path"] = pdb.get_db_path() + info["database_path"] = pdb.db_path info["database_version"] = pdb.db_version photos = pdb.photos()