summaryrefslogtreecommitdiffstats
path: root/module/web/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/utils.py')
-rw-r--r--module/web/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/utils.py b/module/web/utils.py
index ac4bdd4f8..1641fdbba 100644
--- a/module/web/utils.py
+++ b/module/web/utils.py
@@ -50,7 +50,7 @@ def parse_permissions(session):
def permlist():
- return [x for x in dir(Permission) if not x.startswith("_") and x != "ALL"]
+ return [x for x in dir(Permission) if not x.startswith("_") and x != "All"]
def get_permission(perms, p):