Hurf durf can't have subroutines with the same name
This commit is contained in:
parent
51e5744d26
commit
663dfe884b
|
@ -55,7 +55,8 @@ def get_video_description(vid):
|
||||||
|
|
||||||
|
|
||||||
@hook.command(hook=r'(.*)', prefix=False)
|
@hook.command(hook=r'(.*)', prefix=False)
|
||||||
def youtube(inp):
|
def youtube_url(inp):
|
||||||
|
print inp
|
||||||
m = youtube_re.search(inp)
|
m = youtube_re.search(inp)
|
||||||
if m:
|
if m:
|
||||||
return get_video_description(m.group(1))
|
return get_video_description(m.group(1))
|
||||||
|
|
Loading…
Reference in New Issue