Skip to content

Commit 7f04195

Browse files
committed
fix(ci): modify module name from config to core
1 parent 3ae0ca8 commit 7f04195

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,4 @@
195195
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
196196

197197
# Custom Model to use for authentication
198-
AUTH_USER_MODEL = 'users.CustomUser'
198+
AUTH_USER_MODEL = 'users.CustomUser'

manage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def main():
88
"""Run administrative tasks."""
99
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
1010
try:
11-
from django.config.management import execute_from_command_line
11+
from django.core.management import execute_from_command_line
1212
except ImportError as exc:
1313
raise ImportError(
1414
"Couldn't import Django. Are you sure it's installed and "

0 commit comments

Comments
 (0)