diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2020-12-29 02:40:13 +0100 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2020-12-29 02:47:27 +0100 |
commit | 1c38bc3933ba4e469811c5898b9aeae896e23afc (patch) | |
tree | fc1c8ec63c4c195276ec96acc1d0e660e6e994fa /pyGHDL/libghdl/libraries.py | |
parent | dcf1431dd2d469fae869204eec91882e6ab1c381 (diff) | |
download | ghdl-1c38bc3933ba4e469811c5898b9aeae896e23afc.tar.gz ghdl-1c38bc3933ba4e469811c5898b9aeae896e23afc.tar.bz2 ghdl-1c38bc3933ba4e469811c5898b9aeae896e23afc.zip |
pyGHDL/libghdl: fix absolute imports
Diffstat (limited to 'pyGHDL/libghdl/libraries.py')
-rw-r--r-- | pyGHDL/libghdl/libraries.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/libraries.py b/pyGHDL/libghdl/libraries.py index 625f7fdd1..5dbb89804 100644 --- a/pyGHDL/libghdl/libraries.py +++ b/pyGHDL/libghdl/libraries.py @@ -1,4 +1,4 @@ -from libghdl import libghdl +from pyGHDL.libghdl import libghdl from ctypes import c_int32 Get_Libraries_Chain = libghdl.libraries__get_libraries_chain |