From fd4e607fe44e4da56c74a7eae4d93b03524ec859 Mon Sep 17 00:00:00 2001 From: gtitov Date: Wed, 15 Sep 2021 23:26:21 +0300 Subject: [PATCH] Slight changes in usage --- util/import_photos.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/util/import_photos.py b/util/import_photos.py index 59aca94..51ac9b7 100644 --- a/util/import_photos.py +++ b/util/import_photos.py @@ -9,16 +9,16 @@ from shutil import move import sqlite3 # update database residing here -DB_LOCATION = "../../testbox/photovoter.dblite" # Q: any allowances for this being not OUR database? +DB_LOCATION = "db/photovoter.dblite" # Q: any allowances for this being not OUR database? # place compressed images here (needs to exist) -DEST_STRUNK = "../../testbox/image/" +DEST_STRUNK = "db/image/" # move originals here (needs to exist) -DEST_ORIGINAL = "../../testbox/original/" +DEST_ORIGINAL = "db/original/" def usage(): """Brief usage explanation""" - print("USAGE: ./{name} /path/to/images".format(name=argv[0]), file=stderr) + print("USAGE: python {name} /path/to/images".format(name=argv[0]), file=stderr) def process_pictures():