From 8e471825a4bb89d846e9909b5c2a87505523a220 Mon Sep 17 00:00:00 2001 From: jblum Date: Sun, 28 Sep 2008 06:29:46 +0000 Subject: [PATCH] fixed bug: use title option, name removed git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9669 221aa14e-8319-0410-a670-987f0aec2ac5 --- grc/src/platforms/base/FlowGraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grc/src/platforms/base/FlowGraph.py b/grc/src/platforms/base/FlowGraph.py index 071e5939..aeb66ac7 100644 --- a/grc/src/platforms/base/FlowGraph.py +++ b/grc/src/platforms/base/FlowGraph.py @@ -52,7 +52,7 @@ class FlowGraph(Element): #make sure that the id is not used by another block if not filter(lambda b: b.get_id() == id, self.get_blocks()): return id - def __str__(self): return 'FlowGraph - "%s"'%self.get_option('name') + def __str__(self): return 'FlowGraph - %s(%s)'%(self.get_option('title'), self.get_option('id')) def get_option(self, key): """ -- 2.47.2