Fixed forget step in group sync proccess
Benjamin Renard

Benjamin Renard commited on 2014-01-28 01:16:56
Showing 1 changed files, with 3 additions and 0 deletions.

... ...
@@ -46,6 +46,9 @@ class GroupList(object):
46 46
         ret.groups[uuid]=self.groups[uuid].sync(groups.groups[uuid])
47 47
       else:
48 48
         ret.groups[uuid]=groups.groups[uuid]
49
+    for uuid in self.groups:
50
+      if uuid not in ret.groups:
51
+        ret.groups[uuid]=self.groups[uuid]
49 52
     return ret
50 53
 
51 54
 
52 55