Typing mismatch

This commit is contained in:
2021-04-18 16:30:01 +02:00
parent 55026aa626
commit 0f72679fc8
3 changed files with 3 additions and 2 deletions

View File

@@ -73,7 +73,7 @@ class Authetication:
user = {
'username': username,
'password': bcrypt_hash.decode('utf-8'),
'homeDir': data['index'] + 1
'homeDir': str(data['index'] + 1)
}
data['index'] = data['index'] + 1