From 9e72422639ab42faf99800c7dffd630ee09081b7 Mon Sep 17 00:00:00 2001 From: Adarnof Date: Tue, 1 Dec 2015 06:13:06 +0000 Subject: [PATCH] Corrected typo in register_user function preventing succesful registration. --- services/managers/discord_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/managers/discord_manager.py b/services/managers/discord_manager.py index b5627e17..a6405284 100644 --- a/services/managers/discord_manager.py +++ b/services/managers/discord_manager.py @@ -160,7 +160,7 @@ class DiscordAPIManager: 'fingerprint': None, 'username': username, 'invite': invite_code, - 'passowrd': password, + 'password': password, 'email': email, } path = DISCORD_URL + "/auth/register"