1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

Use flup or flipflop in fcgi script

This commit is contained in:
Guillaume Ayoub 2014-02-24 20:05:14 +01:00
parent f9ce1d0e6d
commit 152e5494d3

View file

@ -24,7 +24,10 @@ Launch a Radicale FastCGI server according to configuration.
"""
from flup.server.fcgi import WSGIServer
try:
from flup.server.fcgi import WSGIServer
except ImportError:
from flipflop import WSGIServer
import radicale