diff options
author | Arpit Gupta <guptarpit1997@gmail.com> | 2019-03-19 02:24:07 +0530 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-06-18 22:33:28 -0700 |
commit | 9fec5882536985d8d5f3065896efe035df5ae562 (patch) | |
tree | a8ed8998beea0d10728c8879c6903158df061eb3 /grc/core/Messages.py | |
parent | 45d3edc11f681e1d6403911a2eb814a139f0436b (diff) |
GRC: Fix for GRC crash in case of flowgraph error
Diffstat (limited to 'grc/core/Messages.py')
-rw-r--r-- | grc/core/Messages.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/grc/core/Messages.py b/grc/core/Messages.py index f546c3b62e..2a597d367c 100644 --- a/grc/core/Messages.py +++ b/grc/core/Messages.py @@ -25,6 +25,10 @@ import sys MESSENGERS_LIST = list() _indent = '' +# Global FlowGraph Error and the file that caused it +global flowgraph_error +global flowgraph_error_file + def register_messenger(messenger): """ |