Changeset 1070 for pykota/trunk
- Timestamp:
- 07/07/03 14:11:13 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/edpykota
r1069 r1070 23 23 # 24 24 # $Log$ 25 # Revision 1.52 2003/07/07 12:11:13 jalet 26 # Small fix 27 # 25 28 # Revision 1.51 2003/07/07 11:55:50 jalet 26 29 # Small fix … … 457 460 if not changed.has_key(entry.Name) : 458 461 changed[entry.Name] = {} 462 if not options["groups"] : 463 changed[entry.Name]["ingroups"] = [] 459 464 if not entrypquota.Exists : 460 465 # not found -
pykota/trunk/pykota/storages/ldapstorage.py
r1068 r1070 21 21 # 22 22 # $Log$ 23 # Revision 1.16 2003/07/07 12:11:13 jalet 24 # Small fix 25 # 23 26 # Revision 1.15 2003/07/07 11:49:24 jalet 24 27 # Lots of small fixes with the help of PyChecker … … 486 489 if result : 487 490 fields = result[0][1] 491 if not fields.has_key(self.info["groupmembers"]) : 492 fields[self.info["groupmembers"]] = [] 488 493 fields[self.info["groupmembers"]].append(user.Name) 489 494 self.doModify(group.ident, fields)