aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-12-18 00:06:42 +0100
committerGitHub <noreply@github.com>2021-12-18 00:06:42 +0100
commit45559a72376b558d4ffd61fbfbcf47ea75a9f41a (patch)
treec53b4ebc9d5dc410f38660faabd12fb64fb1dbe2 /scripts
parentf32d77707a2639fed94978965b3a9690c2bf7904 (diff)
parent4c700e385b9773a46c85386d23038b1d47afd4e7 (diff)
downloadghdl-45559a72376b558d4ffd61fbfbcf47ea75a9f41a.tar.gz
ghdl-45559a72376b558d4ffd61fbfbcf47ea75a9f41a.tar.bz2
ghdl-45559a72376b558d4ffd61fbfbcf47ea75a9f41a.zip
Updates for pyGHDL
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/pnodespy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pnodespy.py b/scripts/pnodespy.py
index f1f637ea7..90c827de9 100755
--- a/scripts/pnodespy.py
+++ b/scripts/pnodespy.py
@@ -35,7 +35,7 @@ def print_file_header(includeIntEnumUnique=True, includeBindToLibGHDL=True):
# Auto generated Python source file from Ada sources
# Call 'make' in 'src/vhdl' to regenerate:
#
- """) + "{sysImports}from pydecor import export\n{moduleImports}".format(
+ """) + "{sysImports}from pyTooling.Decorators import export\n{moduleImports}".format(
sysImports = "from enum import IntEnum, unique\n" if includeIntEnumUnique else "",
moduleImports = "\nfrom pyGHDL.libghdl._decorator import BindToLibGHDL\n" if includeBindToLibGHDL else "",
)