From a5e3b9759cbaf4b9c404b5186f4ec60518f5c627 Mon Sep 17 00:00:00 2001 From: rrr-marble Date: Fri, 2 Jul 2021 09:43:59 +0300 Subject: [PATCH] msc: change default paths --- util/import_photos.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/import_photos.py b/util/import_photos.py index fdee042..3ecaacf 100644 --- a/util/import_photos.py +++ b/util/import_photos.py @@ -9,11 +9,11 @@ from shutil import move import sqlite3 # update database residing here -DB_LOCATION = "photovoter.dblite" +DB_LOCATION = "../../testbox/photovoter.dblite" # place compressed images here (needs to exist) -DEST_STRUNK = "image/" +DEST_STRUNK = "../../testbox/image/" # move originals here (needs to exist) -DEST_ORIGINAL = "original/" +DEST_ORIGINAL = "../../testbox/original/" def usage():