Bastien Sevajol (Algoo) il y a 8 ans
Parent
révision
6260756da6
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      tracim/tracim/lib/daemons.py

+ 1 - 1
tracim/tracim/lib/daemons.py Voir le fichier

@@ -99,6 +99,6 @@ class RadicaleDaemon(Daemon):
99 99
             cfg.RADICALE_SERVER_HOST,
100 100
             cfg.RADICALE_SERVER_PORT,
101 101
             RadicaleApplication(),
102
-            RadicaleHTTPServer if cfg.RADICALE_SERVER_SSL else RadicaleHTTPSServer,
102
+            RadicaleHTTPSServer if cfg.RADICALE_SERVER_SSL else RadicaleHTTPServer,
103 103
             RadicaleRequestHandler
104 104
         )