diff options
-rw-r--r-- | grc/src/platforms/base/FlowGraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/src/platforms/base/FlowGraph.py b/grc/src/platforms/base/FlowGraph.py index 071e59396..aeb66ac7e 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): """ |