Jon Solow commited on
Commit
0dc3e49
·
1 Parent(s): d372ae4

Fix BASE_DIR to remove one parent level

Browse files
Files changed (1) hide show
  1. src/grubguesser/settings.py +1 -1
src/grubguesser/settings.py CHANGED
@@ -14,7 +14,7 @@ import os
14
  from pathlib import Path
15
 
16
  # Build paths inside the project like this: BASE_DIR / 'subdir'.
17
- BASE_DIR = Path(__file__).resolve().parent.parent
18
 
19
 
20
  # Quick-start development settings - unsuitable for production
 
14
  from pathlib import Path
15
 
16
  # Build paths inside the project like this: BASE_DIR / 'subdir'.
17
+ BASE_DIR = Path(__file__).resolve().parent
18
 
19
 
20
  # Quick-start development settings - unsuitable for production