From b82dba3a9f8214840264a27ab03dbc44f8281c10 Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Tue, 12 May 2020 22:46:15 +0200 Subject: [PATCH] Reverted renaming of function call Searching a weather station with vvs_station_searching is likely to fail.. --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index b490219..f683664 100644 --- a/bot.py +++ b/bot.py @@ -168,7 +168,7 @@ def handle_weather(update, context): if len(context.args) == 0: update.message.reply_text('Please provide a name!') return - station_line = search_vvs_station(' '.join(context.args)) + station_line = search_weather_station(' '.join(context.args)) if station_line == 'none': update.message.reply_text('No weather station matching this name found!') return