diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-06-19 10:34:00 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-06-19 10:34:00 -0700 |
commit | f9447f11df7ff3fe01959fc42f86ce509b152ac0 (patch) | |
tree | 0e62e1aa2aa652bed00bdc32370ae2c264343cc9 /grc/core/Messages.py | |
parent | 0d9eda3b123884f3d5d0177908d0a30c1c9c18e9 (diff) |
fixup! 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, 2 insertions, 2 deletions
diff --git a/grc/core/Messages.py b/grc/core/Messages.py index 2a597d367c..6d67dc7d2e 100644 --- a/grc/core/Messages.py +++ b/grc/core/Messages.py @@ -26,8 +26,8 @@ MESSENGERS_LIST = list() _indent = '' # Global FlowGraph Error and the file that caused it -global flowgraph_error -global flowgraph_error_file +flowgraph_error = None +flowgraph_error_file = None def register_messenger(messenger): |