diff options
author | Volker Schroer <3470424+dl1ksv@users.noreply.github.com> | 2021-08-07 13:23:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-07 07:23:23 -0400 |
commit | 1f1733eb4489b48fb73509e7806df19e1c738092 (patch) | |
tree | 16e1ab8319a5ebb972c165ac7906a8784eb1b796 /grc/core/FlowGraph.py | |
parent | b538984ef32c20825a88a10e388039984abeaaa2 (diff) |
grc: fix the evaluation of interdependent variables
The gr-digital/examples/tx_ofdm.grc fails to evaluate the
header_formater variable.
This pr fixes #4937
Signed-off-by: Volker Schroer <3470424+dl1ksv@users.noreply.github.com>
Diffstat (limited to 'grc/core/FlowGraph.py')
-rw-r--r-- | grc/core/FlowGraph.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/grc/core/FlowGraph.py b/grc/core/FlowGraph.py index 5ef776d6b2..aa9b1e4c61 100644 --- a/grc/core/FlowGraph.py +++ b/grc/core/FlowGraph.py @@ -227,7 +227,6 @@ class FlowGraph(Element): def renew_namespace(self): namespace = {} - self.namespace.clear() # Load imports for expr in self.imports(): try: |