diff options
author | Josh Blum | 2013-06-25 14:40:16 -0700 |
---|---|---|
committer | Josh Blum | 2013-06-25 14:40:16 -0700 |
commit | a5f1f379466ea79dddea7e444a670d737434fdd3 (patch) | |
tree | 10c955b66a07fa61f3b667f7ed5fc85f5852d82d /gnuradio-core | |
parent | 40a9b45d699d102261b2cfabb666efe7569bdbd4 (diff) | |
download | gnuradio-a5f1f379466ea79dddea7e444a670d737434fdd3.tar.gz gnuradio-a5f1f379466ea79dddea7e444a670d737434fdd3.tar.bz2 gnuradio-a5f1f379466ea79dddea7e444a670d737434fdd3.zip |
gras: fix from last nights swig fun
Diffstat (limited to 'gnuradio-core')
-rw-r--r-- | gnuradio-core/src/lib/swig/gnuradio.i | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnuradio-core/src/lib/swig/gnuradio.i b/gnuradio-core/src/lib/swig/gnuradio.i index 0f02554c9..6c89dd0cb 100644 --- a/gnuradio-core/src/lib/swig/gnuradio.i +++ b/gnuradio-core/src/lib/swig/gnuradio.i @@ -20,6 +20,13 @@ * Boston, MA 02110-1301, USA. */ +%pythoncode %{ +import gras +import os +import sys +sys.path.append(os.path.dirname(gras.__file__)) +%} + // Disable warning about base class types #pragma SWIG nowarn=401 |