Skip to content
This repository has been archived by the owner on Dec 17, 2019. It is now read-only.

Commit

Permalink
change local_repo string from dict
Browse files Browse the repository at this point in the history
  • Loading branch information
yoswein committed Oct 15, 2015
1 parent d908608 commit 4df58c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/WssPythonPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4df58c5

Please sign in to comment.