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
8c9e9341
Commit
8c9e9341
authored
Apr 07, 2021
by
Maxime Perrotin
Browse files
Don't duplicate signalroute entry for exported procedures
parent
feeb3da0
Changes
1
Hide whitespace changes
Inline
Side-by-side
opengeode/ogParser.py
View file @
8c9e9341
...
...
@@ -16,7 +16,7 @@
During the build of the AST this library makes a number of semantic
checks on the SDL input mode.
Copyright (c) 2012-202
0
European Space Agency
Copyright (c) 2012-202
1
European Space Agency
Designed and implemented by Maxime Perrotin
...
...
@@ -3700,7 +3700,8 @@ def system_definition(root, parent):
for
channel
in
system
.
channels
:
for
route
in
channel
[
'routes'
]:
if
route
[
'dest'
].
lower
()
!=
"env"
:
route
[
'signals'
].
append
(
proc
)
if
proc
not
in
route
[
'signals'
]:
route
[
'signals'
].
append
(
proc
)
for
each
in
blocks
:
block
,
err
,
warn
=
block_definition
(
each
,
parent
=
system
)
...
...
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