Kaynağa Gözat

Fix 500 on import error

Denis K 9 yıl önce
ebeveyn
işleme
1a2605248a
2 değiştirilmiş dosya ile 8 ekleme ve 3 silme
  1. 2 0
      jet/dashboard/models.py
  2. 6 3
      jet/dashboard/utils.py

+ 2 - 0
jet/dashboard/models.py

@@ -35,6 +35,8 @@ class UserDashboardModule(models.Model):
             return module
         except AttributeError:
             return None
+        except ImportError:
+            return None
 
     def pop_settings(self, pop_settings):
         settings = json.loads(self.settings)

+ 6 - 3
jet/dashboard/utils.py

@@ -11,7 +11,10 @@ def get_current_dashboard(location):
         raise ValueError('Unknown dashboard location: %s' % location)
 
     module, cls = path.rsplit('.', 1)
-    module = import_module(module)
-    index_dashboard_cls = getattr(module, cls)
 
-    return index_dashboard_cls
+    try:
+        module = import_module(module)
+        index_dashboard_cls = getattr(module, cls)
+        return index_dashboard_cls
+    except ImportError:
+        return None