aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/libghdl/files_map_editor.py
diff options
context:
space:
mode:
authorumarcor <unai.martinezcorral@ehu.eus>2020-12-29 02:40:13 +0100
committerumarcor <unai.martinezcorral@ehu.eus>2020-12-29 02:47:27 +0100
commit1c38bc3933ba4e469811c5898b9aeae896e23afc (patch)
treefc1c8ec63c4c195276ec96acc1d0e660e6e994fa /pyGHDL/libghdl/files_map_editor.py
parentdcf1431dd2d469fae869204eec91882e6ab1c381 (diff)
downloadghdl-1c38bc3933ba4e469811c5898b9aeae896e23afc.tar.gz
ghdl-1c38bc3933ba4e469811c5898b9aeae896e23afc.tar.bz2
ghdl-1c38bc3933ba4e469811c5898b9aeae896e23afc.zip
pyGHDL/libghdl: fix absolute imports
Diffstat (limited to 'pyGHDL/libghdl/files_map_editor.py')
-rw-r--r--pyGHDL/libghdl/files_map_editor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/files_map_editor.py b/pyGHDL/libghdl/files_map_editor.py
index bf9492786..e258dd047 100644
--- a/pyGHDL/libghdl/files_map_editor.py
+++ b/pyGHDL/libghdl/files_map_editor.py
@@ -1,5 +1,5 @@
+from pyGHDL.libghdl import libghdl
from ctypes import c_int32, c_char_p, c_bool
-from libghdl import libghdl
Replace_Text = libghdl.files_map__editor__replace_text_ptr
Replace_Text.argstype = [c_int32, c_int32, c_int32, c_int32, c_char_p, c_int32]