Yet another attempt to fix the vpn
diff --git a/xos/synchronizers/vpn/steps/sync_vpntenant.py b/xos/synchronizers/vpn/steps/sync_vpntenant.py
index 8509ff9..476a88f 100644
--- a/xos/synchronizers/vpn/steps/sync_vpntenant.py
+++ b/xos/synchronizers/vpn/steps/sync_vpntenant.py
@@ -45,7 +45,7 @@
     def get_escaped_ca_crt(self, tenant):
         result = list()
         for line in tenant.ca_crt:
-            result.append(line.replace(":", "\\\\u003a"))
+            result.append("\"" + line + "\"")
 
         return result