diff --git a/Database/safe.py b/Database/safe.py index 6fc706b..1945140 100644 --- a/Database/safe.py +++ b/Database/safe.py @@ -5,7 +5,7 @@ import cv2 # /Users/kalle/Desktop/myfile.py -PASSWORD = "123456" +PASSWORD = "xxx" connect = raw_input("What is your password?\n") @@ -22,7 +22,7 @@ NAME TEXT NOT NULL, EXTENSION TEXT NOT NULL, FILES TEXT NOT NULL);''') - print("Your safe has been created!\nWhat would you like to store in it today?") + print("Your safe has been created.\nWhat would you like to store in it today?") except: print("You have a safe, what would you like to do today?") @@ -96,4 +96,4 @@ command = 'INSERT INTO SAFE (FULL_NAME, NAME, EXTENSION, FILES) VALUES (%s, %s, %s, %s);' %('"' + file_name +'"', '"' + NAME +'"', '"' + EXTENSION +'"', '"' + file_string +'"') conn.execute(command) - conn.commit() \ No newline at end of file + conn.commit()