Merge "Revert "ROOT_PATH should not be appended to "sys.path"""

This commit is contained in:
Zuul 2018-09-10 15:31:24 +00:00 committed by Gerrit Code Review
commit 62d90a49ad
1 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,7 @@
import glob
import logging
import os
import sys
import warnings
from django.utils.translation import pgettext_lazy
@ -42,6 +43,8 @@ warnings.formatwarning = lambda message, category, *args, **kwargs: \
ROOT_PATH = os.path.dirname(os.path.abspath(__file__))
if ROOT_PATH not in sys.path:
sys.path.append(ROOT_PATH)
DEBUG = False