#2 Fix issue in pyasn1 patch
Merged 6 years ago by cstratak. Opened 6 years ago by cheimes.
rpms/ cheimes/python-ldap cookie_fix  into  master

@@ -28,7 +28,7 @@ 

  +        if cookie is None or not cookie.hasValue():

  +            self.cookie = None

  +        else:

- +            self.cookie = str(self.cookie)

+ +            self.cookie = str(cookie)

           self.state = self.__class__.opnames[int(state)]

           self.entryUUID = str(uuid)

  -        if self.cookie is not None:

file modified
+4 -1
@@ -2,7 +2,7 @@ 

  

  Name: python-ldap

  Version: 2.4.25

- Release: 8%{?dist}

+ Release: 9%{?dist}

  Epoch: 0

  License: Python

  Group: System Environment/Libraries
@@ -78,6 +78,9 @@ 

  %{python_sitearch}/python_ldap-%{version}-*.egg-info

  

  %changelog

+ * Wed Nov 08 2017 Christian Heimes <cheimes@redhat.com> - 0:2.4.25-9

+ - Fix issue in pyasn1 patch

+ 

  * Tue Nov 07 2017 Christian Heimes <cheimes@redhat.com> - 0:2.4.25-8

  - Apply fix for pyasn1 >= 0.3

  

no initial comment

Pull-Request has been merged by cstratak

6 years ago