Fixed forget step in group sync proccess
This commit is contained in:
parent
32f0f2a03d
commit
02521de7b4
1 changed files with 3 additions and 0 deletions
|
@ -46,6 +46,9 @@ class GroupList(object):
|
||||||
ret.groups[uuid]=self.groups[uuid].sync(groups.groups[uuid])
|
ret.groups[uuid]=self.groups[uuid].sync(groups.groups[uuid])
|
||||||
else:
|
else:
|
||||||
ret.groups[uuid]=groups.groups[uuid]
|
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
|
return ret
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue