Skip to content

Commit

Permalink
fix import of abstract and description
Browse files Browse the repository at this point in the history
  • Loading branch information
saerdnaer authored and rixx committed Jun 28, 2024
1 parent b79b0b8 commit 578b36d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pretalx_downstream/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def _get_changes(talk, optout, sub, fallback_locale=None):
}
for key in ("description", "abstract"):
try:
change_tracking_data[key] = talk.find(key.text)
change_tracking_data[key] = talk.find(key).text
except Exception:
change_tracking_data[key] = ""
if talk.find("subtitle").text:
Expand Down

0 comments on commit 578b36d

Please sign in to comment.