Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

exceptions.py 344B

1234567891011121314
  1. #-*- coding: utf-8 -*-
  2. class EditorialModelError(Exception):
  3. pass
  4. def assert_edit():
  5. try:
  6. from lodel import Settings
  7. except ImportError: #Very dirty, but don't know how to fix the tests
  8. return
  9. if not Settings.editorialmodel.editormode:
  10. raise EditorialModelError("EM is readonly : editormode is OFF")