1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-17 11:30:19 +01:00

Fix imports in video module, correct path for images

This commit is contained in:
2022-09-25 16:15:15 +02:00
parent 5f13fd7d7a
commit 28499868d2
2 changed files with 3 additions and 3 deletions

View File

@@ -471,7 +471,7 @@ def main():
create.add_argument('dir_to_add') create.add_argument('dir_to_add')
create.add_argument('-i', '--imagedir', help="Directory where to put " create.add_argument('-i', '--imagedir', help="Directory where to put "
"images for the database. Popular, but deprecated " "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 " "is special string `:same_as_db:' which will try to "
"create directory with the same name as the db with " "create directory with the same name as the db with "
"data suffix", default=':same_as_db:') "data suffix", default=':same_as_db:')

View File

@@ -13,8 +13,8 @@ import tempfile
from PIL import Image from PIL import Image
from pygtktalog.misc import float_to_string from pycatalog.misc import float_to_string
from pygtktalog.logger import get_logger from pycatalog.logger import get_logger
LOG = get_logger("Video") LOG = get_logger("Video")