説明なし
選択できるのは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")