diff --git a/db.py b/db.py
index 18e3bb3..d6c52bc 100644
--- a/db.py
+++ b/db.py
@@ -123,7 +123,7 @@ class DB(object):
             return None  # invalid token
         if 'passhash' in json.keys():
             # create user
-            self.execute("INSERT INTO user (passhash) VALUES(?, ?);",
+            self.execute("INSERT INTO user (passhash) VALUES(?);",
                          (json['passhash'], ))
             uid = self.cur.lastrowid
         else: