Changeset 2679
- Timestamp:
- 02/12/06 00:29:52 (19 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/storages/ldapstorage.py
r2678 r2679 35 35 import md5 36 36 import base64 37 import random 38 37 39 from mx import DateTime 38 40 … … 114 116 TODO : this one is not unique accross several print servers, but should be sufficient for testing. 115 117 """ 116 return md5.md5("%s " % time.time()).hexdigest()118 return md5.md5("%s-%s" % (time.time(), random.random()).hexdigest() 117 119 118 120 def normalizeFields(self, fields) :