Show
Ignore:
Timestamp:
05/04/06 09:30:47 (18 years ago)
Author:
jerome
Message:

Double checked that all DateTime? objects are correctly handled in
all cases.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storages/ldapstorage.py

    r2830 r2880  
    11441144        """Sets the date limit permanently for a user print quota.""" 
    11451145        fields = { 
    1146                    "pykotaDateLimit" : datelimit, 
     1146                   "pykotaDateLimit" : str(datelimit), 
    11471147                 } 
    11481148        return self.doModify(userpquota.ident, fields) 
     
    11511151        """Sets the date limit permanently for a group print quota.""" 
    11521152        fields = { 
    1153                    "pykotaDateLimit" : datelimit, 
     1153                   "pykotaDateLimit" : str(datelimit), 
    11541154                 } 
    11551155        return self.doModify(grouppquota.ident, fields)