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/05/21 10:28:55 UTC

[incubator-dlab] branch DLAB-515 updated: [DLAB-1799]: fixed error

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

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


The following commit(s) were added to refs/heads/DLAB-515 by this push:
     new 178b0c4  [DLAB-1799]: fixed error
178b0c4 is described below

commit 178b0c4615c57fefcd7bb8707ebb5948f1757ada
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Thu May 21 13:28:36 2020 +0300

    [DLAB-1799]: fixed error
---
 infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py b/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py
index 86fec5c..0ad64dd 100644
--- a/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py
+++ b/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py
@@ -261,7 +261,7 @@ def ensure_python3_libraries(os_user):
         try:
             #manage_pkg('-y install', 'remote', 'python3-setuptools')
             manage_pkg('-y install', 'remote', 'python3-pip')
-            sudo('pip3 install setuptools=={}').format(os.environ['notebook_setuptools_version'])
+            sudo('pip3 install setuptools=={}'.format(os.environ['notebook_setuptools_version']))
             try:
                 sudo('pip3 install tornado=={0} ipython==7.9.0 ipykernel=={1} --no-cache-dir' \
                      .format(os.environ['notebook_tornado_version'], os.environ['notebook_ipykernel_version']))


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