summaryrefslogtreecommitdiff
path: root/grc/scripts
diff options
context:
space:
mode:
authorSebastian Koslowski <koslowski@kit.edu>2015-11-20 17:28:17 +0100
committerSebastian Koslowski <koslowski@kit.edu>2016-02-17 19:55:16 +0100
commit9f5ef34ac05de070a99fae07eb1a8087ba60a653 (patch)
tree44ab20b78404c94e85689b8511521e7456d58e3d /grc/scripts
parent64f3b70cf135a8641a0271ee27b431e05a8df97b (diff)
grc-refactor: move grc.base to grc.python.base
Diffstat (limited to 'grc/scripts')
-rwxr-xr-xgrc/scripts/gnuradio-companion4
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: