Skip to content

Commit ee8765c

Browse files
authored
Merge pull request #1104 from thecourseforum/dev
Temp "To Announced" to load 2025 Fall, Summer; Fix CICD migrations issue
2 parents f0691e5 + 955cd77 commit ee8765c

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.github/workflows/aws.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@ jobs:
6464
sed -i '/\(coverage\|lint\|types\-tqdm\|mypy\|black\|isort\|gunicorn\|django\-heroku\|django\-stubs\)/d' requirements.txt
6565
pip install -r requirements.txt
6666
67-
- name: Migrations
68-
run: |
69-
python manage.py migrate
70-
7167
- name: Collect static files
7268
run: python manage.py collectstatic --no-input
7369

tcf_website/management/commands/load_semester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def load_instructors(self, instructor_names):
233233
else:
234234
names = name.split()
235235
try:
236-
first, last = " ".join(names[:-1]), names[-1]
236+
first, last = names[0], names[-1]
237237
except IndexError as e:
238238
print(f"Instructor named '{name}'")
239239
print(e)

0 commit comments

Comments
 (0)