Forgot to import EventManager (title.py, youtube.py)

This commit is contained in:
jesopo 2019-02-09 10:57:05 +00:00
parent 31367b2b5d
commit 3fae5c52cd
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
import re
from src import ModuleManager, utils
from src import EventManager, ModuleManager, utils
REGEX_URL = re.compile("https?://\S+", re.I)

View file

@ -1,7 +1,7 @@
#--require-config google-api-key
import re
from src import ModuleManager, utils
from src import EventManager, ModuleManager, utils
REGEX_YOUTUBE = re.compile(
"https?://(?:www.)?(?:youtu.be/|youtube.com/watch\?[\S]*v=)([\w\-]{11})",