From ce24dec0c21e74087b3c330355d8a1cf45a1c184 Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Wed, 16 Oct 2019 14:18:40 +0200 Subject: [PATCH] Used wrong query term beacuse self. was missing :facepalm:, querying for a method does not work obviously --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 468024f..6d98cae 100644 --- a/bot.py +++ b/bot.py @@ -34,7 +34,7 @@ class Query: if args[0].isdigit(): self.station_id = args[0].strip() else: - self.station_id = search_station(input) + self.station_id = search_station(self.input) def start(update):