From 87666a5f633055e65021b354c05342d935068b48 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Fri, 10 Jul 2020 04:16:49 +0100 Subject: [PATCH] Allowing SuperUser to Access Database --- db.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db.py b/db.py index 751aa613..c1e5c17c 100644 --- a/db.py +++ b/db.py @@ -10,9 +10,9 @@ def connection(): # Connect to MariaDB Platform try: conn = mariadb.connect( - user="root", + user="hamothy", password=password, - host="localhost", + host="173.208.202.20", port=3306, database="enso" )