diff options
author | David Robillard <d@drobilla.net> | 2020-02-17 13:43:39 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-02-17 13:43:39 +0100 |
commit | 8014748967fb64e539cfca9069b563e6ead3bc7f (patch) | |
tree | e58e1c03548146bc3b18221c383b23e456f90f8e /bindings/python | |
parent | 941a6ffaebeeb98bf570bdb092da253d140b4911 (diff) | |
download | lilv-8014748967fb64e539cfca9069b563e6ead3bc7f.tar.gz lilv-8014748967fb64e539cfca9069b563e6ead3bc7f.tar.bz2 lilv-8014748967fb64e539cfca9069b563e6ead3bc7f.zip |
Update Python binding boilerplate
Diffstat (limited to 'bindings/python')
-rw-r--r-- | bindings/python/lilv.py | 6 |
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 |