Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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")