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 import radicale