From 0ed49f06b93d63582dc11feb8bb212eaf7b800ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D0=BE=D1=80=D0=BE=D0=B4=D0=B8=D0=BD=20=D0=A0=D0=BE?= =?UTF-8?q?=D0=BC=D0=B0=D0=BD?= Date: Thu, 26 Apr 2018 17:10:37 +0300 Subject: [PATCH] search_by_guid docstring --- ldappr/connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ldappr/connection.py b/ldappr/connection.py index 636e7c6..42f82da 100644 --- a/ldappr/connection.py +++ b/ldappr/connection.py @@ -47,9 +47,9 @@ class Connection(object): search_filter) return [LdapprObject(item, self.conn) for item in result if item[0] != None ] def search_by_guid(self, guid): - """Get list of objects that match the search_filter + """Get object that match the objectGuid - :param search_filter: filter to find the objects + :guid GUID like XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX :return: list of LdapperObjects (or empty list) """ u = UUID(guid)