libknot 3.2.12__tar.gz → 3.2.13__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: libknot
3
- Version: 3.2.12
3
+ Version: 3.2.13
4
4
  Summary: Python bindings for libknot
5
5
  Home-page: https://gitlab.nic.cz/knot/knot-dns
6
6
  Author: Daniel Salzman
@@ -70,7 +70,7 @@ class KnotCtlData(object):
70
70
  def __setitem__(self, index: KnotCtlDataIdx, value: str) -> None:
71
71
  """Data unit item setter."""
72
72
 
73
- self.data[index] = ctypes.c_char_p(value.encode()) if value else ctypes.c_char_p()
73
+ self.data[index] = ctypes.c_char_p(value.encode()) if value != None else ctypes.c_char_p()
74
74
 
75
75
 
76
76
  class KnotCtlError(Exception):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: libknot
3
- Version: 3.2.12
3
+ Version: 3.2.13
4
4
  Summary: Python bindings for libknot
5
5
  Home-page: https://gitlab.nic.cz/knot/knot-dns
6
6
  Author: Daniel Salzman
@@ -7,7 +7,7 @@ if p.exists():
7
7
 
8
8
  setuptools.setup(
9
9
  name='libknot',
10
- version='3.2.12',
10
+ version='3.2.13',
11
11
  description='Python bindings for libknot',
12
12
  long_description=long_description,
13
13
  long_description_content_type="text/markdown",
File without changes
File without changes
File without changes
File without changes
File without changes