diff --git a/houseseats.com/notify-on-event/search.py b/houseseats.com/notify-on-event/search.py index 72179be0..64586815 100644 --- a/houseseats.com/notify-on-event/search.py +++ b/houseseats.com/notify-on-event/search.py @@ -61,7 +61,7 @@ def send_to_slack(message): # Find all instances of the

title of a show -pattern = r'

(.*?)

' +pattern = r'

(.*?)

' # Use re.findall() to find all instances of the pattern in the string matches = re.findall(pattern, response.text.lower()) @@ -100,6 +100,6 @@ def send_to_slack(message): ## Send message to Slack if slack_enabled == 'true': send_to_slack(f""" - *[Houseseat]* Search found: + *[Houseseat]* Search found: """)