diff --git a/FaustBot/Modules/TitleObserver.py b/FaustBot/Modules/TitleObserver.py
index 413842d..10e91bf 100644
--- a/FaustBot/Modules/TitleObserver.py
+++ b/FaustBot/Modules/TitleObserver.py
@@ -53,7 +53,7 @@ class TitleObserver(PrivMsgObserverPrototype):
'''"results":{"contents":\[{"videoPrimaryInfoRenderer":{"title":{"runs":\[{"text":"([^"]*)"'''
)
else:
- title_re = re.compile("
(.+?)")
+ title_re = re.compile("]*>(.+?)")
req = urllib.request.Request(url, None, headers)
@@ -74,8 +74,8 @@ class TitleObserver(PrivMsgObserverPrototype):
if title_matches:
title = title_matches.group(1)
else:
- #with open("content.html", "w") as file:
- # file.write(content)
+ # with open("content.html", "w") as file:
+ # file.write(content)
raise Exception("Could not Parse Title for {}".format(url))
title = html.unescape(title)