From ac54dd6f5d0f3794562df6dbcd06a5941c905387 Mon Sep 17 00:00:00 2001
From: Evan Cordell <cordell.evan@gmail.com>
Date: Tue, 11 Jul 2017 14:12:57 -0400
Subject: [PATCH] fix(secscan): don't use slash_join, it discards the root

---
 util/secscan/api.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/util/secscan/api.py b/util/secscan/api.py
index 5efdafb92..fb8c5c0d4 100644
--- a/util/secscan/api.py
+++ b/util/secscan/api.py
@@ -1,3 +1,4 @@
+import os
 import logging
 
 from abc import ABCMeta, abstractmethod
@@ -23,7 +24,7 @@ TOKEN_VALIDITY_LIFETIME_S = 60  # Amount of time the security scanner has to cal
 
 UNKNOWN_PARENT_LAYER_ERROR_MSG = 'worker: parent layer is unknown, it must be processed first'
 
-MITM_CERT_PATH = slash_join(CONF_DIR, 'mitm.cert')
+MITM_CERT_PATH = os.path.join(CONF_DIR, 'mitm.cert')
 
 DEFAULT_HTTP_HEADERS = {'Connection': 'close'}