summaryrefslogtreecommitdiff
path: root/grc/core/Platform.py
diff options
context:
space:
mode:
Diffstat (limited to 'grc/core/Platform.py')
-rw-r--r--grc/core/Platform.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/core/Platform.py b/grc/core/Platform.py
index 844693d14b..10e75d797d 100644
--- a/grc/core/Platform.py
+++ b/grc/core/Platform.py
@@ -199,7 +199,7 @@ class Platform(Element):
n['block_wrapper_path'] = xml_file # inject block wrapper path
# Get block instance and add it to the list of blocks
block = self.Block(self._flow_graph, n)
- key = block.get_key()
+ key = block.key
if key in self.blocks:
print('Warning: Block with key "{}" already exists.\n\tIgnoring: {}'.format(key, xml_file), file=sys.stderr)
else: # Store the block
@@ -207,7 +207,7 @@ class Platform(Element):
self._blocks_n[key] = n
self._docstring_extractor.query(
- block.get_key(),
+ block.key,
block.get_imports(raw=True),
block.get_make(raw=True)
)