Bastien Sevajol (Algoo) 9 years ago
parent
commit
6260756da6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tracim/tracim/lib/daemons.py

+ 1 - 1
tracim/tracim/lib/daemons.py View File

99
             cfg.RADICALE_SERVER_HOST,
99
             cfg.RADICALE_SERVER_HOST,
100
             cfg.RADICALE_SERVER_PORT,
100
             cfg.RADICALE_SERVER_PORT,
101
             RadicaleApplication(),
101
             RadicaleApplication(),
102
-            RadicaleHTTPServer if cfg.RADICALE_SERVER_SSL else RadicaleHTTPSServer,
102
+            RadicaleHTTPSServer if cfg.RADICALE_SERVER_SSL else RadicaleHTTPServer,
103
             RadicaleRequestHandler
103
             RadicaleRequestHandler
104
         )
104
         )