From 030f66b1d4e02e927dd8767e5d10d399acff730e Mon Sep 17 00:00:00 2001 From: Ralf Ertzinger Date: Sun, 30 Dec 2007 16:55:14 +0100 Subject: [PATCH] - Fix missing bracket in regex --- videosite/DailyMotionGrabber.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/videosite/DailyMotionGrabber.pm b/videosite/DailyMotionGrabber.pm index 8cea83c..286c876 100644 --- a/videosite/DailyMotionGrabber.pm +++ b/videosite/DailyMotionGrabber.pm @@ -14,7 +14,7 @@ sub new { my $self = $class->SUPER::new(); $self->{'NAME'} = 'dailymotion'; - $self->{'PATTERNS'} = ['(http://(?:[-a-zA-Z0-9_.]+\.)*.dailymotion.com/(?:[^/]+/)*video/([-a-zA-Z0-9_]+)']; + $self->{'PATTERNS'} = ['(http://(?:[-a-zA-Z0-9_.]+\.)*.dailymotion.com/(?:[^/]+/)*video/([-a-zA-Z0-9_]+))']; bless($self, $class); -- 1.8.3.1