Skip to content

Commit

Permalink
fix finding gh link
Browse files Browse the repository at this point in the history
  • Loading branch information
dariagrudzien committed Sep 26, 2023
1 parent 78fe480 commit ae8a894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion juniorguru_chick/lib/intro.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def generate_intro_message(intro_message_content: str) -> dict[str, Any]:
If you have any questions, feel free to ask in the #ahoj channel. We're here to help!
"""

if intro_message_content.find("github.com/") == True:
if intro_message_content.find("github.com/") != -1:
content = content + gh_connection_snippet

footer = (
Expand Down

0 comments on commit ae8a894

Please sign in to comment.