Skip to content

Commit

Permalink
Clean the WSGI and FastCGI files, include them in the source tarball (c…
Browse files Browse the repository at this point in the history
…loses Kozea#569)
  • Loading branch information
liZe committed Aug 9, 2011
1 parent 6e454af commit fc6ef16
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include COPYING NEWS TODO config
include COPYING NEWS TODO config logging radicale.fcgi radicale.wsgi
4 changes: 1 addition & 3 deletions radicale.fcgi
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ from flup.server.fcgi import WSGIServer
import radicale


radicale.log.start(radicale.config.get("logging", "config"))
radicale.log.start()
radicale.log.LOGGER.info("Starting Radicale FastCGI server")

WSGIServer(radicale.Application()).run()

radicale.log.LOGGER.info("Stopping Radicale FastCGI server")
3 changes: 3 additions & 0 deletions radicale.wsgi
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,7 @@ Radicale WSGI file (mod_wsgi and uWSGI compliant).
"""

import radicale


radicale.log.start()
application = radicale.Application()

0 comments on commit fc6ef16

Please sign in to comment.