From 3e958ca0e1a517f542b130709a0859956811e737 Mon Sep 17 00:00:00 2001 From: echel0n Date: Wed, 12 Nov 2014 22:35:36 -0800 Subject: [PATCH] Fixed regex issue --- gui/slick/interfaces/default/home_trendingShows.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/slick/interfaces/default/home_trendingShows.tmpl b/gui/slick/interfaces/default/home_trendingShows.tmpl index 011f170f..bd73fe21 100644 --- a/gui/slick/interfaces/default/home_trendingShows.tmpl +++ b/gui/slick/interfaces/default/home_trendingShows.tmpl @@ -113,7 +113,7 @@ #else #for $cur_show in $trending_shows: -#set $image = re.sub(r'(.*)(\..*?)$', r'\1-300\2', $cur_show['images']['poster'], 0, re.IGNORECASE | re.MULTILINE) +#set $image = re.sub(r'(?im)(.*)(\..*?)$', r'\1-300\2', $cur_show['images']['poster'], 0, re.IGNORECASE | re.MULTILINE)