From 0f330f61189803a7fb40fc9049cd829e6a9f0e6b Mon Sep 17 00:00:00 2001 From: Alexander Kryklia Date: Wed, 19 Dec 2012 13:58:55 +0200 Subject: [PATCH] fix --- common/lib/xmodule/xmodule/gst_module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/xmodule/xmodule/gst_module.py b/common/lib/xmodule/xmodule/gst_module.py index b5d1c69368..33449dece6 100644 --- a/common/lib/xmodule/xmodule/gst_module.py +++ b/common/lib/xmodule/xmodule/gst_module.py @@ -73,7 +73,7 @@ class GraphicalSliderToolModule(XModule): plot_div = '
' # extract css style from plot - plot_def = re.search(r'\', html_string) + plot_def = re.search(r'\$plot[^\$]*\$', html_string) if plot_def: plot_def = plot_def.group() style = re.search(r'(?=[^\$]*style\=[\"\'](.*)[\"\'])', plot_def,