mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-26 03:24:01 +03:00
Merge pull request #222 from ad-m/patch-1
Fix APPS_DIR to move up to config
This commit is contained in:
commit
e0e6d8a8ea
|
@ -12,7 +12,7 @@ from __future__ import absolute_import, unicode_literals
|
|||
|
||||
import environ
|
||||
|
||||
APPS_DIR = environ.Path(__file__) - 1 # one folder back (/a/b/ - 1 = /a/)
|
||||
APPS_DIR = environ.Path(__file__) - 2 # one folder back (/a/b/ - 1 = /a/)
|
||||
ROOT_DIR = APPS_DIR - 1
|
||||
|
||||
env = environ.Env()
|
||||
|
|
Loading…
Reference in New Issue
Block a user