From a507ebc1b649ae5e23f3be1a7bd29542baa90d0a Mon Sep 17 00:00:00 2001 From: Don Mitchell Date: Fri, 9 Aug 2013 16:39:31 -0400 Subject: [PATCH] Clarify function name and fix some comments ref'g old names --- common/lib/xmodule/xmodule/x_module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/xmodule/xmodule/x_module.py b/common/lib/xmodule/xmodule/x_module.py index c4deaa8925..924f7a075c 100644 --- a/common/lib/xmodule/xmodule/x_module.py +++ b/common/lib/xmodule/xmodule/x_module.py @@ -723,7 +723,7 @@ class XModuleDescriptor(XModuleFields, HTMLSnippet, ResourceTemplates, XBlock): # We are not allowing editing of xblock tag and name fields at this time (for any component). return [XBlock.tags, XBlock.name] - def get_set_fields_by_scope(self, scope=Scope.content): + def get_explicitly_set_fields_by_scope(self, scope=Scope.content): """ Get a dictionary of the fields for the given scope which are set explicitly on this xblock. (Including any set to None.)