summaryrefslogtreecommitdiffstats
path: root/bindings/python/lilv.py
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/python/lilv.py')
-rw-r--r--bindings/python/lilv.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bindings/python/lilv.py b/bindings/python/lilv.py
index 595ec00..8e30791 100644
--- a/bindings/python/lilv.py
+++ b/bindings/python/lilv.py
@@ -1,9 +1,9 @@
"""Lilv Python interface"""
__author__ = "David Robillard"
-__copyright__ = "Copyright 2016-2019 David Robillard"
+__copyright__ = "Copyright 2016-2020 David Robillard"
__license__ = "ISC"
-__version__ = "0.24.5"
+__version__ = "0.24.7"
__maintainer__ = "David Robillard"
__email__ = "d@drobilla.net"
__status__ = "Production"
@@ -816,7 +816,7 @@ class Node(Structure):
Returns None if value is not a file URI."""
c_str = c.node_get_path(self.node, hostname)
string = cast(c_str, c_char_p).value.decode("utf-8")
- if sys.platform != 'win32': # TODO: Memory comes from libserd
+ if sys.platform != "win32": # TODO: Memory comes from libserd
c.free(c_str)
return string