From 40ea8c008674bf383893ad22081dc25ebe70aca9 Mon Sep 17 00:00:00 2001 From: lomion Date: Wed, 16 Sep 2020 17:00:42 +0200 Subject: [PATCH] Minor fix in search_movies --- tmdb/tmdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmdb/tmdb.py b/tmdb/tmdb.py index 55e1565..c46a2db 100644 --- a/tmdb/tmdb.py +++ b/tmdb/tmdb.py @@ -148,7 +148,7 @@ class TmdbBot(Plugin): content = TextMessageEventContent( msgtype=MessageType.NOTICE, format=Format.HTML, body=f"No movie found!") - await evt.respond(content) + await evt.respond(content) @command.new("movie-search", help="Movie lookup by Title") @command.argument("message", pass_raw=True, required=True)