diff options
| author | Dylan Bolger <dylan.bolger00@gmail.com> | 2026-08-17 17:07:44 -0500 |
|---|---|---|
| committer | Dylan Bolger <dylan.bolger00@gmail.com> | 2026-08-17 17:07:44 -0500 |
| commit | cb06c5b689db596c6d27dd8f2777e16e56250695 (patch) | |
| tree | e94bf71181c59b0d25a1ce8d5c7ce281ea57f5ee /app/services | |
| parent | 71b33b24dff521b1ba03fd5eaa0508ef69774f07 (diff) | |
| download | photoblog-cb06c5b689db596c6d27dd8f2777e16e56250695.tar.xz photoblog-cb06c5b689db596c6d27dd8f2777e16e56250695.zip | |
remove extra slash from photos_dir
Diffstat (limited to 'app/services')
| -rw-r--r-- | app/services/images.py | 2 |
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() |
