From cc82e65156c36b3ef5d473a87fb86d08ec664933 Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Sun, 29 Mar 2009 21:10:17 +0200 Subject: [PATCH] bugfix: missing argument --- pyweb/mumble/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyweb/mumble/models.py b/pyweb/mumble/models.py index 64131af..fd2a81c 100644 --- a/pyweb/mumble/models.py +++ b/pyweb/mumble/models.py @@ -188,7 +188,7 @@ class MumbleUser( models.Model ): def getAdmin( self ): # Get ACL of root Channel, get the admin group and see if I'm in it bus = self.server.getDbusObject(); - acl = mmACL( bus.getACL(0) ); + acl = mmACL( bus.getACL(0), 0 ); if not hasattr( acl, "admingroup" ): raise ValueError( "The admin group was not found in the ACL's groups list!" );