You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by lf...@apache.org on 2020/07/09 11:55:17 UTC

[incubator-dlab] branch DLAB-1748 updated: [DLAB-1748]: made pip dependencies a list

This is an automated email from the ASF dual-hosted git repository.

lfrolov pushed a commit to branch DLAB-1748
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git


The following commit(s) were added to refs/heads/DLAB-1748 by this push:
     new d6c6f67  [DLAB-1748]: made pip dependencies a list
d6c6f67 is described below

commit d6c6f67371de0893d2ccaf928c2efeade5395b18
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Thu Jul 9 14:52:36 2020 +0300

    [DLAB-1748]: made pip dependencies a list
---
 infrastructure-provisioning/src/general/lib/os/fab.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/infrastructure-provisioning/src/general/lib/os/fab.py b/infrastructure-provisioning/src/general/lib/os/fab.py
index d128fda..ec9b6c2 100644
--- a/infrastructure-provisioning/src/general/lib/os/fab.py
+++ b/infrastructure-provisioning/src/general/lib/os/fab.py
@@ -92,7 +92,7 @@ def install_pip_pkg(requisites, pip_version, lib_group):
                 if dep == '':
                     dep = []
                 else:
-                    dep.split(' ')
+                    dep = dep.split(', ')
                 status.append({"group": "{}".format(lib_group), "name": pip_pkg.split("==")[0], "version": version, "status": "installed", "add_pkgs": dep})
             else:
                 versions = err[err.find("(from versions: ") + 16: err.find(")\r\n")]


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org