Browse Source

fix: CFG wrong name

Bastien Sevajol (Algoo) 8 years ago
parent
commit
9f5c6f3984
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tracim/tracim/config/app_cfg.py

+ 2 - 2
tracim/tracim/config/app_cfg.py View File

303
                 self,
303
                 self,
304
                 'Generated radicale.client.base_url.host parameter with '
304
                 'Generated radicale.client.base_url.host parameter with '
305
                 'followings parameters: website.server_name -> {}'
305
                 'followings parameters: website.server_name -> {}'
306
-                .format(self.RADICALE_CLIENT_BASE_URL_HOST)
306
+                .format(self.WEBSITE_SERVER_NAME)
307
             )
307
             )
308
-            self.RADICALE_CLIENT_BASE_URL_HOST = self.RADICALE_SERVER_PORT
308
+            self.RADICALE_CLIENT_BASE_URL_HOST = self.WEBSITE_SERVER_NAME
309
 
309
 
310
         self.RADICALE_CLIENT_BASE_URL_TEMPLATE = '{}{}'.format(
310
         self.RADICALE_CLIENT_BASE_URL_TEMPLATE = '{}{}'.format(
311
             self.RADICALE_CLIENT_BASE_URL_HOST,
311
             self.RADICALE_CLIENT_BASE_URL_HOST,