diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2016-10-21 11:50:08 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-10-21 11:50:08 -0700 |
commit | 015421b0a2a0042a6ce22f4e156b0e434a74be7c (patch) | |
tree | 3c40b40ca8adeca605408b03791f853172b7f089 /grc/core/FlowGraph.py | |
parent | 6431a11b26cec7162e520d4eba0efbd2cfb4ba5c (diff) | |
parent | bc4e0b3ba71250d92a7f45a036bcae7f5589e1a6 (diff) |
Merge branch 'maint'
Diffstat (limited to 'grc/core/FlowGraph.py')
-rw-r--r-- | grc/core/FlowGraph.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/core/FlowGraph.py b/grc/core/FlowGraph.py index 949eecaa71..48563eefb1 100644 --- a/grc/core/FlowGraph.py +++ b/grc/core/FlowGraph.py @@ -64,7 +64,7 @@ class FlowGraph(Element): self._options_block = self.new_block('options') def __str__(self): - return 'FlowGraph - {}({})'.format(self.get_option('title'), self.get_option('id')) + return 'FlowGraph - {0}({1})'.format(self.get_option('title'), self.get_option('id')) ############################################## # TODO: Move these to new generator package @@ -461,7 +461,7 @@ class FlowGraph(Element): self.connect(source_port, sink_port) except LookupError as e: Messages.send_error_load( - 'Connection between {}({}) and {}({}) could not be made.\n\t{}'.format( + 'Connection between {0}({1}) and {2}({3}) could not be made.\n\t{4}'.format( source_block_id, source_key, sink_block_id, sink_key, e)) errors = True |