From dffe19b4e81a3bd4f14c01251d2f1fc03e45e05a Mon Sep 17 00:00:00 2001 From: Gilles Gravier Date: Thu, 12 Oct 2023 08:06:41 +0200 Subject: [PATCH] Update paths.py - small typo Corrected a small typo (he -> the). --- paths.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paths.py b/paths.py index 1298304..db6543f 100644 --- a/paths.py +++ b/paths.py @@ -1,6 +1,6 @@ # This file contains all necessary file and folder paths. Make sure to end folder paths with "/". -# basePath is the path from root to he lowest common denominator for all of the other paths. +# basePath is the path from root to the lowest common denominator for all of the other paths. # Using an absolute path is especially important if running via cron. basePath = "/" # Path to the database file. If you want it somewhere other than directly in the base path you can @@ -11,4 +11,4 @@ backupPath = basePath + "db/" + "database.bak" # Path for storing logs logPath = basePath + "logs/" # Path to folder for temporary storage of images -imagePath = basePath + "images/" \ No newline at end of file +imagePath = basePath + "images/"