second pass on all uses of base64encodings, so at to always return str like it was...
[plcapi.git] / PLC / Methods / ResetPassword.py
index 6a35a4d..aecf67f 100644 (file)
@@ -65,7 +65,7 @@ class ResetPassword(Method):
         # Generate 32 random bytes
         int8s = random.sample(range(0, 256), 32)
         # Base64 encode their string representation
-        random_key = base64.b64encode(bytes(int8s))
+        random_key = base64.b64encode(bytes(int8s)).decode()
 
         if verification_key is not None:
             if person['verification_key'] is None or \