From b6c6535f152e14efe31e4caa850af593f581e546 Mon Sep 17 00:00:00 2001 From: Amir Qayyum Khan Date: Mon, 2 Apr 2018 17:44:59 +0500 Subject: [PATCH] Fixed error: ImportError: No module named notmigrations --- common/djangoapps/util/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/util/db.py b/common/djangoapps/util/db.py index 585e711beda8..5426e5d84ed3 100644 --- a/common/djangoapps/util/db.py +++ b/common/djangoapps/util/db.py @@ -289,4 +289,4 @@ def __contains__(self, item): return True def __getitem__(self, item): - return "notmigrations" + return None