From a84caf388a99480e85139051a64ce523ec934a99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?He=CC=81ctor=20Rico=20Garci=CC=81a?= Date: Fri, 4 Mar 2016 16:14:09 +0100 Subject: [PATCH] Fix misspelles function name - The was a problem with the coherency in the name of the function - In models/models.py : is_in_readonly() - In models/vfs.py : is_readonly() --- coursebuilder/models/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coursebuilder/models/models.py b/coursebuilder/models/models.py index 8ff4f5ee..c515c297 100644 --- a/coursebuilder/models/models.py +++ b/coursebuilder/models/models.py @@ -172,7 +172,7 @@ def clear_readonly_cache(cls): cls._IS_READONLY = False cls._READONLY_REENTRY_COUNT = 0 if cls._READONLY_APP_CONTEXT and ( - cls._READONLY_APP_CONTEXT.fs.is_in_readonly): + cls._READONLY_APP_CONTEXT.fs.is_readonly): cls._READONLY_APP_CONTEXT.fs.end_readonly() cls._READONLY_APP_CONTEXT = None