From 35c70a1e48a7b7c5ad8514beba53f1e64adb5ef9 Mon Sep 17 00:00:00 2001 From: Edward Powell Date: Mon, 24 Jun 2013 21:53:46 -0400 Subject: [PATCH] [youtube] Fix my stupid mistake in 30c4c25 Closes issue #295 --- youtube.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube.py b/youtube.py index d20377307b..36227696c8 100644 --- a/youtube.py +++ b/youtube.py @@ -22,7 +22,7 @@ def setup(bot): regex = re.compile('(youtube.com/watch\S*v=|youtu.be/)([\w-]+)') if not bot.memory.contains('url_callbacks'): bot.memory['url_callbacks'] = tools.WillieMemory() - bot.memory['url_callbacks'][regex] = exclude + bot.memory['url_callbacks'][regex] = ytinfo def ytget(bot, trigger, uri):