8 lines
151 B
Python
8 lines
151 B
Python
|
from .base import PostProcessorBase
|
||
|
|
||
|
# protect against unavailable tornado
|
||
|
try:
|
||
|
from .serve import ServePostProcessor
|
||
|
except ImportError:
|
||
|
pass
|