From ba102b4a66f89fb66d623b21716cab1031e47d68 Mon Sep 17 00:00:00 2001 From: Adam Palay Date: Mon, 12 Jan 2015 13:52:15 -0500 Subject: [PATCH] fix quality violation --- cms/djangoapps/contentstore/management/commands/fix_not_found.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cms/djangoapps/contentstore/management/commands/fix_not_found.py b/cms/djangoapps/contentstore/management/commands/fix_not_found.py index 392a72aa24..ec4bdc9dd3 100644 --- a/cms/djangoapps/contentstore/management/commands/fix_not_found.py +++ b/cms/djangoapps/contentstore/management/commands/fix_not_found.py @@ -20,6 +20,7 @@ class Command(BaseCommand): course_key = CourseKey.from_string(args[0]) # for now only support on split mongo + # pylint: disable=protected-access owning_store = modulestore()._get_modulestore_for_courseid(course_key) if hasattr(owning_store, 'fix_not_found'): owning_store.fix_not_found(course_key, ModuleStoreEnum.UserID.mgmt_command)