Typo, 'acess' -> 'access' (channel_access.py)

This commit is contained in:
jesopo 2019-01-29 07:35:48 +00:00
parent 66b2ffee68
commit 0564a173a3

View file

@ -11,7 +11,7 @@ class Module(ModuleManager.BaseModule):
"access", [])
identified_account = event["user"].get_identified_account()
if ((require_access in acess or "*" in access) and
if ((require_access in access or "*" in access) and
identified_account):
return utils.consts.PERMISSION_FORCE_SUCCESS
else: