diff --git a/Website/__init__.py b/Website/__init__.py
index 7e5af6b..5cc2176 100644
--- a/Website/__init__.py
+++ b/Website/__init__.py
@@ -276,7 +276,7 @@ def create_app(test_config=None):
elif request.method == 'GET':
db = get_db()
c = db.cursor()
- userid = reqest.args.get("id")
+ userid = request.args.get("id")
c.execute("SELECT * FROM users WHERE id=?", [userid])
user = c.fetchone()
if user != None:
diff --git a/Website/templates/list.html b/Website/templates/list.html
index 37e1a42..247da05 100644
--- a/Website/templates/list.html
+++ b/Website/templates/list.html
@@ -1,5 +1,5 @@
-
+