diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-07-22 10:08:54 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-07-29 15:45:08 +0200 |
commit | 6f067a5029baaf4be8fcb39c6b22729a0a9e946b (patch) | |
tree | 251b9d51f63210cc879254b185b205b608f85801 /grc/gui/FlowGraph.py | |
parent | 6b99b6fded94ae1ed8421c624246362e7925fb08 (diff) |
grc: various clean-ups and fixes
Diffstat (limited to 'grc/gui/FlowGraph.py')
-rw-r--r-- | grc/gui/FlowGraph.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/gui/FlowGraph.py b/grc/gui/FlowGraph.py index a3dd379074..6ff4507df2 100644 --- a/grc/gui/FlowGraph.py +++ b/grc/gui/FlowGraph.py @@ -153,8 +153,8 @@ class FlowGraph(Element, _Flowgraph): try: self.connect(self._old_selected_port, self._new_selected_port) Actions.ELEMENT_CREATE() - except: - Messages.send_fail_connection() + except Exception as e: + Messages.send_fail_connection(e) self._old_selected_port = None self._new_selected_port = None return True |