forked from platypush/platypush
Missing commas
This commit is contained in:
parent
b716b1a0c1
commit
adc94349c7
1 changed files with 4 additions and 4 deletions
|
@ -483,10 +483,10 @@ class MediaPlugin(Plugin):
|
||||||
patterns = [
|
patterns = [
|
||||||
re.compile(pattern)
|
re.compile(pattern)
|
||||||
for pattern in [
|
for pattern in [
|
||||||
r'https?://www.youtube.com/watch\?v=([^&#]+)'
|
r'https?://www.youtube.com/watch\?v=([^&#]+)',
|
||||||
r'https?://youtube.com/watch\?v=([^&#]+)'
|
r'https?://youtube.com/watch\?v=([^&#]+)',
|
||||||
r'https?://youtu.be/([^&#/]+)'
|
r'https?://youtu.be/([^&#/]+)',
|
||||||
r'youtube:video:([^&#:])'
|
r'youtube:video:([^&#:])',
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue