diff options
Diffstat (limited to 'pyGHDL/libghdl/__init__.py')
-rw-r--r-- | pyGHDL/libghdl/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/__init__.py b/pyGHDL/libghdl/__init__.py index 1477d9361..0d3c75fa1 100644 --- a/pyGHDL/libghdl/__init__.py +++ b/pyGHDL/libghdl/__init__.py @@ -52,7 +52,7 @@ class LibGHDLException(GHDLBaseException): def _get_libghdl_name() -> Path: - """Get the name of the libghdl library (with version and extension)""" + """Get the name of the libghdl library (with version and extension).""" ver = __version__.replace("-", "_").replace(".", "_") ext = {"win32": "dll", "cygwin": "dll", "darwin": "dylib"}.get(sys.platform, "so") return Path("libghdl-{version}.{ext}".format(version=ver, ext=ext)) |