Merge r6461:6464 from jcorgan/t162-staging into trunk.
[debian/gnuradio] / gnuradio-core / src / python / gnuradio / blks2 / __init__.py
index 227e2bf7f360a590ba975ca9ee94c8cffc03fa23..89ebb92299e8d8f822f393cdc3e98f8009d82ae1 100644 (file)
@@ -27,11 +27,11 @@ import os.path
 # to manually update this file.
 
 for p in __path__:
-    filenames = glob.glob (os.path.join (p, "..", "blksimpl2", "*.py"))
+    filenames = glob.glob (os.path.join (p, "..", "blks2impl", "*.py"))
     for f in filenames:
         f = os.path.basename(f).lower()
         f = f[:-3]
         if f == '__init__':
             continue
         # print f
-        exec "from gnuradio.blksimpl2.%s import *" % (f,)
+        exec "from gnuradio.blks2impl.%s import *" % (f,)