summaryrefslogtreecommitdiff
path: root/grc/python/Platform.py
diff options
context:
space:
mode:
Diffstat (limited to 'grc/python/Platform.py')
-rw-r--r--grc/python/Platform.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/grc/python/Platform.py b/grc/python/Platform.py
index 4a32888894..21fd7ef8d2 100644
--- a/grc/python/Platform.py
+++ b/grc/python/Platform.py
@@ -104,7 +104,11 @@ class Platform(_Platform, _GUIPlatform):
def load_block_xml(self, xml_file):
block = _Platform.load_block_xml(self, xml_file)
- self._docstring_extractor.query(block.get_key())
+ self._docstring_extractor.query(
+ block.get_key(),
+ block.get_imports(raw=True),
+ block.get_make(raw=True)
+ )
return block
##############################################