diff --git a/account/account.py b/account/account.py index bbabfbd..4f13090 100644 --- a/account/account.py +++ b/account/account.py @@ -4,6 +4,7 @@ import sqlite3 import configparser import subprocess import os +import re from waitress import serve # Load from config.ini @@ -166,11 +167,6 @@ def register(): passwordhash = fetch_hash_from_database(username) - print(username) - print(password) - print(verifyhash) - print(passwordhash) - if verifyhash == passwordhash: # Attempt to change the password if change_email_password(username, password):