暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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