diff options
Diffstat (limited to 'grc/scripts/grc')
-rwxr-xr-x | grc/scripts/grc | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/grc/scripts/grc b/grc/scripts/grc index 44d07a7ee..93a9a05c0 100755 --- a/grc/scripts/grc +++ b/grc/scripts/grc @@ -17,12 +17,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA """ -##@package Editor -#Execute the flow graph editor GUI. This file must be called by the python interpreter. -#@author Josh Blum -import grc -from grc.Constants import VERSION,FLOW_GRAPH_FILE_EXTENSION +from gnuradio.grc.platforms.base.Constants import VERSION, FLOW_GRAPH_FILE_EXTENSION from optparse import OptionParser if __name__ == "__main__": @@ -37,7 +33,7 @@ and you are welcome to redistribute it. """%VERSION parser = OptionParser(usage=usage, version=version) (options, args) = parser.parse_args() - from grc_gnuradio.Platform import Platform - from grc.ActionHandler import ActionHandler + from gnuradio.grc.platforms.python.Platform import Platform + from gnuradio.grc.gui.ActionHandler import ActionHandler ActionHandler(args, Platform()) |