diff options
Diffstat (limited to 'grc/scripts/gnuradio-companion')
-rwxr-xr-x | grc/scripts/gnuradio-companion | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/scripts/gnuradio-companion b/grc/scripts/gnuradio-companion index 203a8c773d..9eee8df7dd 100755 --- a/grc/scripts/gnuradio-companion +++ b/grc/scripts/gnuradio-companion @@ -108,13 +108,13 @@ def main(): source_tree_root = get_source_tree_root() if not source_tree_root: # run the installed version - from gnuradio.grc.python.Platform import Platform + from gnuradio.grc.gui.Platform import Platform from gnuradio.grc.gui.ActionHandler import ActionHandler else: print("Running from source tree") sys.path.insert(1, source_tree_root) - from grc.python.Platform import Platform + from grc.gui.Platform import Platform from grc.gui.ActionHandler import ActionHandler try: |