aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/python/pnodespy.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/python/pnodespy.py')
-rwxr-xr-xsrc/vhdl/python/pnodespy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vhdl/python/pnodespy.py b/src/vhdl/python/pnodespy.py
index 54a025e1f..822680970 100755
--- a/src/vhdl/python/pnodespy.py
+++ b/src/vhdl/python/pnodespy.py
@@ -211,7 +211,7 @@ def do_libghdl_names():
print('class Name:')
for n, v in res:
# Avoid clash with Python names
- if n in ['False', 'True']:
+ if n in ['False', 'True', 'None']:
n = 'N' + n
print(' {0} = {1}'.format(n, v))