Skip to content

Commit

Permalink
Fix bug when Page doesn't have a content owner
Browse files Browse the repository at this point in the history
  • Loading branch information
CamLamb committed May 16, 2024
1 parent 4ce2318 commit 25e469d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def content_owners_report(request: HttpRequest, *args, **kwargs) -> HttpResponse
results = [
(
p.get_full_url(request),
p.content_owner.full_name,
p.content_owner.full_name if p.content_owner else "",
p.content_contact_email,
p.last_published_at,
)
Expand Down

0 comments on commit 25e469d

Please sign in to comment.