Skip to content

Commit

Permalink
fix: Support channels test bug
Browse files Browse the repository at this point in the history
  • Loading branch information
munshkr committed Feb 23, 2024
1 parent 3ff10a3 commit 71267f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions events/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def get_support_channels_test(stream):
if stream.event.support_urls.exists():
return (
"Streaming documentation and support links.\n"
"If you have any questions, please reach out to our support channel:\n"
"\n".join(f"* {u.name}: {u.url}" for u in stream.event.support_urls.all())
+ "If you have any questions, please reach out to our support channel:\n"
+ "\n".join(f"* {u.name}: {u.url}" for u in stream.event.support_urls.all())
)
else:
return "If you have any questions, please reach out to our support channel."

0 comments on commit 71267f2

Please sign in to comment.