From 115ae42bee21c7aade0e8986043ab7857bbac684 Mon Sep 17 00:00:00 2001 From: Peter Fogg Date: Mon, 10 Jun 2013 11:07:11 -0400 Subject: [PATCH] Changed description of source and track fields. --- common/lib/xmodule/xmodule/video_module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/lib/xmodule/xmodule/video_module.py b/common/lib/xmodule/xmodule/video_module.py index 5b3913160f..0274b755e8 100644 --- a/common/lib/xmodule/xmodule/video_module.py +++ b/common/lib/xmodule/xmodule/video_module.py @@ -25,8 +25,8 @@ class VideoFields(object): youtube_id_1_5 = String(help="Youtube ID for 1.5x speed video", display_name="1.5x", scope=Scope.settings, default="DYpADpL7jAY") start_time = Float(help="Time the video starts", display_name="Start Time", scope=Scope.settings, default=0.0) end_time = Float(help="Time the video ends", display_name="End Time", scope=Scope.settings, default=0.0) - source = String(help="External source to download video", display_name="External Source", scope=Scope.settings, default="") - track = String(help="External source to download subtitle strack", display_name="External Track", scope=Scope.settings, default="") + source = String(help="Source to download video", display_name="Source", scope=Scope.settings, default="") + track = String(help="Source to download subtitle track", display_name="Track", scope=Scope.settings, default="") class VideoModule(VideoFields, XModule):