소스 검색

Revert relative imports for non-module sandbox settings

c06e1df wrongly changed the imports to relative imports, as settings
isn't a module (but probably should be). Reverting those changes for
now.
master
Maik Hoepfel 11 년 전
부모
커밋
0e37b077b3
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1
    1
      sites/sandbox/settings_mysql.py
  2. 1
    1
      sites/sandbox/settings_postgres.py
  3. 1
    1
      sites/sandbox/settings_sphinx.py

+ 1
- 1
sites/sandbox/settings_mysql.py 파일 보기

@@ -1,4 +1,4 @@
1
-from .settings import *
1
+from settings import *
2 2
 
3 3
 DATABASES = {
4 4
     'default': {

+ 1
- 1
sites/sandbox/settings_postgres.py 파일 보기

@@ -1,4 +1,4 @@
1
-from .settings import *
1
+from settings import *
2 2
 
3 3
 DATABASES = {
4 4
     'default': {

+ 1
- 1
sites/sandbox/settings_sphinx.py 파일 보기

@@ -1,4 +1,4 @@
1
-from .settings import *
1
+from settings import *
2 2
 
3 3
 # Remove debug toolbar
4 4
 try:

Loading…
취소
저장