diff options
Diffstat (limited to 'grc/gui/Executor.py')
-rw-r--r-- | grc/gui/Executor.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/grc/gui/Executor.py b/grc/gui/Executor.py index 4505ef0b37..78f91d93e2 100644 --- a/grc/gui/Executor.py +++ b/grc/gui/Executor.py @@ -80,7 +80,8 @@ class ExecFlowGraphThread(threading.Thread): Execute this C++ flow graph after generating and compiling it. """ generator = self.page.get_generator() - run_command = generator.file_path + '/build/' + self.flow_graph.get_option('id') + run_command = generator.file_path + \ + '/build/' + self.flow_graph.get_option('id') dirname = generator.file_path builddir = os.path.join(dirname, 'build') |