Fix' ACL's initial dictionary to allow first item assignment

This commit is contained in:
HorlogeSkynet
2017-03-10 12:32:49 +01:00
parent 3ca0a76470
commit 377f68477e

@ -33,7 +33,7 @@ class AccessControlList():
def __init__(self):
self.__FILE = 'Server/Data/passwd.json'
self.__data = {"groups": None, "files": None}
self.__data = {"groups": {}, "files": {}}
self.loadFromFile()