From 4df58c5318011e7d3a836f86e9187922d001922d Mon Sep 17 00:00:00 2001 From: whitesource-yossi Date: Thu, 15 Oct 2015 09:25:30 +0300 Subject: [PATCH] change local_repo string from dict --- plugin/WssPythonPlugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/WssPythonPlugin.py b/plugin/WssPythonPlugin.py index ad2e371..c5593df 100644 --- a/plugin/WssPythonPlugin.py +++ b/plugin/WssPythonPlugin.py @@ -59,8 +59,8 @@ def finalize_options(self): # load proxy setting if exist if 'proxy' in self.configDict: self.proxySetting = self.configDict['proxy'] - if 'repo_url' in self.configDict: - self.pkgIndex = PackageIndex(index_url=self.configDict['repo_url']) + if 'index_url' in self.configDict: + self.pkgIndex = PackageIndex(index_url=self.configDict['index_url']) self.projectCoordinates = Coordinates.create_project_coordinates(self.distribution) self.userEnvironment = pk_res.Environment(get_python_lib(), platform=None, python=None)