diff options
Diffstat (limited to 'grc/base/Platform.py')
-rw-r--r-- | grc/base/Platform.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/grc/base/Platform.py b/grc/base/Platform.py index d6a3b5dd28..f0f24a48a7 100644 --- a/grc/base/Platform.py +++ b/grc/base/Platform.py @@ -65,6 +65,10 @@ class Platform(_Element): #create a dummy flow graph for the blocks self._flow_graph = _Element(self) #search for *.xml files in the given search path + + self.loadblocks(); + + def loadblocks(self): xml_files = list() for block_path in self._block_paths: if os.path.isfile(block_path): xml_files.append(block_path) |