From 7a0f7af6fb324b22193e6e1bdda31c403fe6a629 Mon Sep 17 00:00:00 2001 From: echel0n Date: Wed, 12 Nov 2014 22:50:55 -0800 Subject: [PATCH] Fixed TrendingShows 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..df9664f0 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)