Use actual group name, not circular naming

This commit is contained in:
2010-09-02 22:56:21 +01:00
parent cecf625a21
commit 98913004b9

View File

@@ -103,7 +103,7 @@ class MumbleService(BaseService):
for agroup in groups:
if not agroup.name.replace(' ', '').lower() in glist:
group = self.mur.Group()
group.name = group.name.replace(' ', '').lower()
group.name = agroup.name.replace(' ', '').lower()
group.members = []
group.add = []
group.remove = []