From 4b1893eea7bb777413996c94961fbd074ef17cbc Mon Sep 17 00:00:00 2001 From: Sein Coray Date: Wed, 31 Oct 2018 14:10:11 +0100 Subject: [PATCH] Changed path to new location of db credentials --- htpserver/HTDatabase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htpserver/HTDatabase.py b/htpserver/HTDatabase.py index a27ed31..5651233 100644 --- a/htpserver/HTDatabase.py +++ b/htpserver/HTDatabase.py @@ -9,7 +9,7 @@ class HTDatabase: def __init__(self, working_dir): # Search the DB settings for Hashtopolis - path = working_dir + "/../db.php" + path = working_dir + "/../conf.php" self.db = None if not os.path.exists(path): logging.error("DB connection file of Hashtopolis is not present!")