mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
Use flup or flipflop in fcgi script
This commit is contained in:
parent
f9ce1d0e6d
commit
152e5494d3
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue