diff --git a/Lib/ldif.py b/Lib/ldif.py index 3f13ec68..c1e3323c 100644 --- a/Lib/ldif.py +++ b/Lib/ldif.py @@ -150,7 +150,7 @@ def _unparseEntryRecord(self,entry): entry dictionary holding an entry """ - for attr_type, values in sorted(entry.items()): + for attr_type, values in entry.items(): for attr_value in values: self._unparseAttrTypeandValue(attr_type,attr_value)