From: jblum Date: Sun, 28 Sep 2008 06:29:46 +0000 (+0000) Subject: fixed bug: use title option, name removed X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=8e471825a4bb89d846e9909b5c2a87505523a220;p=debian%2Fgnuradio fixed bug: use title option, name removed git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9669 221aa14e-8319-0410-a670-987f0aec2ac5 --- 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): """