fixed bugs

This commit is contained in:
Sleepingpirates
2020-06-12 17:24:35 +00:00
committed by repl.it user
parent bd8e5e87a9
commit 73f16672f2
2 changed files with 14 additions and 2 deletions

8
db.py
View File

@@ -70,4 +70,10 @@ def delete_user(username):
except:
return False
else:
return "username cannot be empty"
return "username cannot be empty"
def read_useremail():
data = cursor.fetchall()
for row in data :
print row[1]