Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
59bb515c
Commit
59bb515c
authored
Nov 04, 2014
by
Maxime Perrotin
Browse files
Fix attribute error
parent
a43a1ec1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Renderer.py
View file @
59bb515c
...
...
@@ -84,8 +84,9 @@ def _block(ast, scene):
direc
=
"in"
if
fpar
[
'direction'
]
==
'in'
else
'in/out'
,
asn1
=
fpar
[
'type'
]
.
ReferencedTypeName
.
replace
(
'-'
,
'_'
))
asn1
=
getattr
(
fpar
[
'type'
],
'ReferencedTypeName'
,
'ERROR'
)
.
replace
(
'-'
,
'_'
))
for
fpar
in
proc
.
fpar
]))
for
proc
in
ast
.
parent
.
procedures
]
if
signals
or
procedures
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment