From b7c07e987ea3893f891c744e4a08da55d6a507ed Mon Sep 17 00:00:00 2001 From: garland Date: Tue, 6 Feb 2024 08:12:27 -0800 Subject: [PATCH] debugging... --- houseseats.com/notify-on-event/search.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: """)