- commit
- 86a201c5838ebd60bc3140d14246045eecad980f
- parent
- 46afc63bd05d7fc405dd01ab888ba422b939f394
- Author
- Tobias Bengfort <tobias.bengfort@gmx.net>
- Date
- 2015-07-09 14:38
adapt to api changes in ldif3
Diffstat
| M | cctool.py | 2 | +- |
| M | setup.py | 2 | +- |
2 files changed, 2 insertions, 2 deletions
diff --git a/cctool.py b/cctool.py
@@ -398,7 +398,7 @@ class LDIF(Format): 398 398 399 399 parser = ldif3.LDIFParser(fh, strict=False) 400 400401 -1 for dn, changetype, entry in parser.parse():-1 401 for dn, entry in parser.parse(): 402 402 yield map_keys(MultiDict(entry), cls.fields) 403 403 404 404
diff --git a/setup.py b/setup.py
@@ -11,7 +11,7 @@ setup( 11 11 platforms='any', 12 12 py_modules=['cctool'], 13 13 extras_require={14 -1 'ldif': ['ldif3'],-1 14 'ldif': ['ldif3>=1.1.0'], 15 15 'ical': ['icalendar'], 16 16 'yaml': ['PyYAML'], 17 17 },