Skip to content

Commit 8c21daa

Browse files
authored
Fix PROJECT_ROOT setting value. (#631)
1 parent ff155f3 commit 8c21daa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

djangosnippets/settings/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def user_url(user):
1313
return reverse("cab_author_snippets", kwargs={"username": user.username})
1414

1515

16-
PROJECT_ROOT = str(Path(__file__).resolve().parent)
16+
PROJECT_ROOT = Path(__file__).resolve().parent.parent
1717
BASE_DIR = Path(__file__).resolve().parent.parent.parent
1818

1919
SITE_ID = 1

0 commit comments

Comments
 (0)