You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2018/10/03 11:12:26 UTC

[kibble] 02/03: checkl for bcrypt as wellmention bcrypt as well

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

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git

commit 68e0f54ede2104cff210cce4302e61559e5d22f7
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Oct 3 13:11:45 2018 +0200

    checkl for bcrypt as wellmention bcrypt as well
---
 setup/setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup/setup.py b/setup/setup.py
index a691271..9f9fb30 100644
--- a/setup/setup.py
+++ b/setup/setup.py
@@ -46,14 +46,14 @@ except:
 if dopip and (getpass.getuser() != "root"):
     print("It looks like you need to install some python modules first")
     print("Either run this as root to do so, or run: ")
-    print("pip3 install elasticsearch certifi")
+    print("pip3 install elasticsearch certifi bcrypt")
     sys.exit(-1)
 
 elif dopip:
     print("Before we get started, we need to install some modules")
     print("Hang on!")
     try:
-        subprocess.check_call(('pip3','install','elasticsearch', 'certifi'))
+        subprocess.check_call(('pip3','install','elasticsearch', 'certifi', 'bcrypt'))
         from elasticsearch import Elasticsearch
     except:
         print("Oh dear, looks like this failed :(")