Selaa lähdekoodia

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 vuotta sitten
vanhempi
commit
0e37b077b3

+ 1
- 1
sites/sandbox/settings_mysql.py Näytä tiedosto

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

+ 1
- 1
sites/sandbox/settings_postgres.py Näytä tiedosto

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

+ 1
- 1
sites/sandbox/settings_sphinx.py Näytä tiedosto

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

Loading…
Peruuta
Tallenna