aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/tfl.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/tfl.py b/modules/tfl.py
index 074503d7..967ef2b7 100644
--- a/modules/tfl.py
+++ b/modules/tfl.py
@@ -22,8 +22,8 @@ class Module(object):
).hook(self.line,
help="Get line status for TfL underground lines",
usage="<line_name>")
- bot.events.on("received").on("command").on("tflstop"
- ).hook(self.stop, min_args=1,
+ bot.events.on("received").on("command").on("tflsearch"
+ ).hook(self.search, min_args=1,
help="Get a list of TfL stop IDs for a given name",
usage="<name>")
@@ -128,7 +128,7 @@ class Module(object):
else:
event["stderr"].write("No results")
- def stop(self, event):
+ def search(self, event):
app_id = self.bot.config["tfl-api-id"]
app_key = self.bot.config["tfl-api-key"]
stop_name = event["args"]