From 28499868d2694ea864e3e7575af8d389ca65db7a Mon Sep 17 00:00:00 2001 From: gryf Date: Sun, 25 Sep 2022 16:15:15 +0200 Subject: [PATCH] Fix imports in video module, correct path for images --- pycatalog/__init__.py | 2 +- pycatalog/video.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pycatalog/__init__.py b/pycatalog/__init__.py index 0ad9b41..388908f 100644 --- a/pycatalog/__init__.py +++ b/pycatalog/__init__.py @@ -471,7 +471,7 @@ def main(): create.add_argument('dir_to_add') create.add_argument('-i', '--imagedir', help="Directory where to put " "images for the database. Popular, but deprecated " - "choice is `~/.pygtktalog/images'. Current default " + "choice is `~/.pycatalog/images'. Current default " "is special string `:same_as_db:' which will try to " "create directory with the same name as the db with " "data suffix", default=':same_as_db:') diff --git a/pycatalog/video.py b/pycatalog/video.py index 519120e..89bf6fe 100644 --- a/pycatalog/video.py +++ b/pycatalog/video.py @@ -13,8 +13,8 @@ import tempfile from PIL import Image -from pygtktalog.misc import float_to_string -from pygtktalog.logger import get_logger +from pycatalog.misc import float_to_string +from pycatalog.logger import get_logger LOG = get_logger("Video")