summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDylan Bolger <dylan.bolger00@gmail.com>2026-08-17 17:07:44 -0500
committerDylan Bolger <dylan.bolger00@gmail.com>2026-08-17 17:07:44 -0500
commitcb06c5b689db596c6d27dd8f2777e16e56250695 (patch)
treee94bf71181c59b0d25a1ce8d5c7ce281ea57f5ee /app
parent71b33b24dff521b1ba03fd5eaa0508ef69774f07 (diff)
downloadphotoblog-cb06c5b689db596c6d27dd8f2777e16e56250695.tar.xz
photoblog-cb06c5b689db596c6d27dd8f2777e16e56250695.zip
remove extra slash from photos_dir
Diffstat (limited to 'app')
-rw-r--r--app/services/images.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/images.py b/app/services/images.py
index bd02384..ac4984a 100644
--- a/app/services/images.py
+++ b/app/services/images.py
@@ -3,7 +3,7 @@ import random
print(str(Path.cwd()))
root_dir = Path.cwd()
-photos_dir = Path(f"{root_dir}/photos")
+photos_dir = Path(f"{root_dir}photos")
image_cache = set()