]> git.gag.com Git - debian/gnuradio/blobdiff - grc/scripts/grc
Merged r9481:9518 on jblum/grc_reorganize into trunk. Reorganized grc source under...
[debian/gnuradio] / grc / scripts / grc
index 44d07a7eedc15355a292261bff145d4acebb13a1..93a9a05c0ef24f19b73099156a3753cb754bfcda 100755 (executable)
@@ -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())