Commit 6ebaddaa authored by Romain Courteaud's avatar Romain Courteaud

Allow exception class NotConvertedError


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@29513 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 3a5be1e7
...@@ -53,6 +53,7 @@ import cStringIO ...@@ -53,6 +53,7 @@ import cStringIO
import string import string
from OFS.Image import Pdata from OFS.Image import Pdata
import md5 import md5
from Products.PythonScripts.Utility import allow_class
_MARKER = [] _MARKER = []
VALID_ORDER_KEY_LIST = ('user_login', 'content', 'file_name', 'input') VALID_ORDER_KEY_LIST = ('user_login', 'content', 'file_name', 'input')
...@@ -110,6 +111,7 @@ class ConversionError(Exception):pass ...@@ -110,6 +111,7 @@ class ConversionError(Exception):pass
class DocumentProxyError(Exception):pass class DocumentProxyError(Exception):pass
class NotConvertedError(Exception):pass class NotConvertedError(Exception):pass
allow_class(NotConvertedError)
class ConversionCacheMixin: class ConversionCacheMixin:
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment