aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-29 07:35:48 +0000
committerGravatar jesopo2019-01-29 07:35:48 +0000
commit0564a173a3b24a7d512f864e80534af4eab2aaa4 (patch)
tree8b4804ed523befb9a436620d23f9200bd4d5d513 /modules
parentSupport `*` as a channel permission, to give users all access (diff)
signature
Typo, 'acess' -> 'access' (channel_access.py)
Diffstat (limited to 'modules')
-rw-r--r--modules/channel_access.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/channel_access.py b/modules/channel_access.py
index ce00da0c..ee54b50d 100644
--- a/modules/channel_access.py
+++ b/modules/channel_access.py
@@ -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: