Fixed forget step in group sync proccess

This commit is contained in:
Benjamin Renard 2014-01-28 02:16:56 +01:00
parent 32f0f2a03d
commit 02521de7b4

View file

@ -46,6 +46,9 @@ class GroupList(object):
ret.groups[uuid]=self.groups[uuid].sync(groups.groups[uuid])
else:
ret.groups[uuid]=groups.groups[uuid]
for uuid in self.groups:
if uuid not in ret.groups:
ret.groups[uuid]=self.groups[uuid]
return ret