diff --git a/cogs/components/module_information/scraper.py b/cogs/components/module_information/scraper.py index 3566a1fe2e5477ad79bc757f7ced4f0120a3a45f..2a795a2db1f9132831535788ad201f1aee8e12db 100644 --- a/cogs/components/module_information/scraper.py +++ b/cogs/components/module_information/scraper.py @@ -124,7 +124,7 @@ class Scraper: def parse_support(self, soup): try: support_source = soup.find('h2', text=re.compile( - r'Mentorielle Betreuung in Regionalzentren')).findNext('div').findAll('li') + r'Mentorielle Betreuung an den Campusstandorten')).findNext('div').findAll('li') except: return None diff --git a/cogs/module_information.py b/cogs/module_information.py index cb6572e899459514b4f841e53f6533099a230167..0b982c4ef72cbe1b93b9c34ad235c6fd65944bd2 100644 --- a/cogs/module_information.py +++ b/cogs/module_information.py @@ -95,7 +95,7 @@ class ModuleInformation(commands.Cog): for course_of_studies in self.data: shorts.append(f"`{course_of_studies['short']}`") await ctx.channel.send( - f"Fehler! Wähle entweder eine Studiengangs-Rolle aus oder gebe ein Studiengangskürzel" + f"Fehler! Wähle entweder eine Studiengangs-Rolle aus oder gebe ein Studiengangskürzel " f"nach dem Kommando an.\nMögliche Kürzel: {', '.join(shorts)}" ) return None